From 4064aab0ac03eb809eb0de4f86c91fd613c2efbe Mon Sep 17 00:00:00 2001 From: naefl Date: Tue, 27 Jul 2021 15:04:58 -0400 Subject: [PATCH] make work on windows --- fuzzy/fuzzy_command_search.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzy/fuzzy_command_search.nu b/fuzzy/fuzzy_command_search.nu index 57f1a22..32a8da8 100644 --- a/fuzzy/fuzzy_command_search.nu +++ b/fuzzy/fuzzy_command_search.nu @@ -33,6 +33,6 @@ def fuzzy-command-search [] { )( $it.description )" - }) | str collect (char nl) | ^fzf | cut -f1 -d$'\t' | str trim | clip; paste ) + }) | str collect (char nl) | fzf | split column (char tab)| get Column1 | clip; paste ) }