Fix builtin completions

Command substitution needs parenthesis
This commit is contained in:
Aaron Gyes 2019-04-15 12:24:54 -07:00
parent f4e40f2f4b
commit 89b6b05f88

View File

@ -2,4 +2,4 @@
complete -c builtin -s h -l help -d 'Display help and exit'
complete -c builtin -s n -l names -d 'Print names of all existing builtins'
complete -c builtin -xa '(builtin -n)'
complete -c builtin -n '__fish_use_subcommand' -xa '__fish_complete_subcommand'
complete -c builtin -n '__fish_use_subcommand' -xa '(__fish_complete_subcommand)'