From d8e0cbb759b0e9ba11da05228c9bbdccfbdb3f6f Mon Sep 17 00:00:00 2001 From: Kid <44045911+kidonng@users.noreply.github.com> Date: Fri, 19 Aug 2022 17:30:51 +0000 Subject: [PATCH] Missing `-q/--query` flag for `builtin` --- share/completions/builtin.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/share/completions/builtin.fish b/share/completions/builtin.fish index 27800d3b3..dd463a23a 100644 --- a/share/completions/builtin.fish +++ b/share/completions/builtin.fish @@ -1,4 +1,5 @@ complete -c builtin -n 'test (count (commandline -opc)) -eq 1' -s h -l help -d 'Display help and exit' complete -c builtin -n 'test (count (commandline -opc)) -eq 1' -s n -l names -d 'Print names of all existing builtins' +complete -c builtin -n 'test (count (commandline -opc)) -eq 1' -s q -l query -d 'Tests if builtin exists' complete -c builtin -n 'test (count (commandline -opc)) -eq 1' -xa '(builtin -n)' complete -c builtin -n 'test (count (commandline -opc)) -ge 2' -xa '(__fish_complete_subcommand)'