Don't put a space in the fish shell completion of "--target=".

This commit is contained in:
Username404-59 2021-03-29 21:38:53 +02:00
parent bbd060618f
commit d0c3cedfb2
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -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"