From d0c3cedfb22399fb6a3462e8681eae7c0657295a Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Mon, 29 Mar 2021 21:38:53 +0200 Subject: [PATCH] Don't put a space in the fish shell completion of "--target=". --- scripts/completions/fish-completion.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/completions/fish-completion.fish b/scripts/completions/fish-completion.fish index 0730d4c..a25a89c 100644 --- a/scripts/completions/fish-completion.fish +++ b/scripts/completions/fish-completion.fish @@ -3,5 +3,5 @@ set -l commands --version -h --help --target= -p --printresult complete -c ybcon -f -a "(__fish_complete_suffix .ybcon)" complete -c ybcon -x -s h -l help -d "Print the help screen" complete -c ybcon -x -l version -d "Print the version" -complete -c ybcon -l target= -k -x -a 'lua js py' -d "Set the transpilation target" +complete -c ybcon -l target -k -f -a 'lua js py' -d "Set the transpilation target" complete -c ybcon -s p -l printresult -d "Enable printing the transpilation result to stdout" \ No newline at end of file