mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
complete builtin: suggest commands for options --comand and --wraps
This commit is contained in:
parent
2dbbaa6a97
commit
8063d6d0b8
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
# Completions for complete
|
||||
|
||||
complete -c complete -s c -l command -d "Command to add completion to" -r
|
||||
complete -c complete -s c -l command -d "Command to add completion to" -xa '(__fish_complete_command)'
|
||||
complete -c complete -s p -l path -d "Path to add completion to" -r
|
||||
complete -c complete -s s -l short-option -d "POSIX-style short option to complete" -x
|
||||
complete -c complete -s l -l long-option -d "GNU-style long option to complete" -x
|
||||
|
@ -14,7 +14,7 @@ complete -c complete -s e -l erase -d "Remove completion"
|
|||
complete -c complete -s h -l help -d "Display help and exit"
|
||||
complete -c complete -s C -l do-complete -d "Print completions for a commandline specified as a parameter"
|
||||
complete -c complete -s n -l condition -d "Completion only used if command has zero exit status" -x
|
||||
complete -c complete -s w -l wraps -d "Inherit completions from specified command" -r
|
||||
complete -c complete -s w -l wraps -d "Inherit completions from specified command" -xa '(__fish_complete_command)'
|
||||
|
||||
# Deprecated options
|
||||
|
||||
|
|
Loading…
Reference in a new issue