From a6a9a7cc6d4c95f55c556def4d55bae5cc68a1e1 Mon Sep 17 00:00:00 2001 From: Kid <44045911+kidonng@users.noreply.github.com> Date: Fri, 19 Aug 2022 17:30:32 +0000 Subject: [PATCH] Missing `-v` flag for `command --search` --- share/completions/command.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/command.fish b/share/completions/command.fish index 2ad0c39ba..e55a15c3d 100644 --- a/share/completions/command.fish +++ b/share/completions/command.fish @@ -1,5 +1,5 @@ complete -c command -n 'test (count (commandline -opc)) -eq 1' -s h -l help -d 'Display help and exit' complete -c command -n 'test (count (commandline -opc)) -eq 1' -s a -l all -d 'Print all external commands by the given name' complete -c command -n 'test (count (commandline -opc)) -eq 1' -s q -l quiet -l query -d 'Do not print anything, only set exit status' -complete -c command -n 'test (count (commandline -opc)) -eq 1' -s s -l search -d 'Print the file that would be executed' +complete -c command -n 'test (count (commandline -opc)) -eq 1' -s s -s v -l search -d 'Print the file that would be executed' complete -c command -xa "(__fish_complete_subcommand)"