mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 18:56:51 +08:00
89b6b05f88
Command substitution needs parenthesis
6 lines
258 B
Fish
6 lines
258 B
Fish
|
|
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)'
|