From 5a746c0ed6081176edf4e0200ff08e4a0dd12dd3 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Mon, 16 Oct 2023 07:21:30 -0500 Subject: [PATCH] add coreutils to cp search terms (#10738) # Description This PR is just a quick change to add `coreutils` to the `cp` command. I thought that it would be a good search term as we start to integrate more `coreutils` commands. # User-Facing Changes # Tests + Formatting # After Submitting --- crates/nu-command/src/filesystem/ucp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/filesystem/ucp.rs b/crates/nu-command/src/filesystem/ucp.rs index f5a7f4bb6b..370b0b9540 100644 --- a/crates/nu-command/src/filesystem/ucp.rs +++ b/crates/nu-command/src/filesystem/ucp.rs @@ -35,7 +35,7 @@ impl Command for UCp { } fn search_terms(&self) -> Vec<&str> { - vec!["copy", "file", "files"] + vec!["copy", "file", "files", "coreutils"] } fn signature(&self) -> Signature {