mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 08:58:01 +00:00
68527ff20c
This ends up saving a surprising number of bytes.
11 lines
946 B
Fish
11 lines
946 B
Fish
complete -c function -s d -l description -d "Set function description" -x
|
|
complete -c function -xa "(functions -n)" -d "Function"
|
|
complete -c function -xa "(builtin -n)" -d "Builtin"
|
|
complete -c function -s j -l on-job-exit -d "Make the function a job exit event handler" -x
|
|
complete -c function -s p -l on-process-exit -d "Make the function a process exit event handler" -x
|
|
complete -c function -s s -l on-signal -d "Make the function a signal event handler" -x
|
|
complete -c function -s v -l on-variable -d "Make the function a variable update event handler" -x
|
|
complete -c function -s e -l on-event -d "Make the function a generic event handler" -xa 'fish_prompt fish_command_not_found'
|
|
complete -c function -s a -l argument-names -d "Specify named arguments"
|
|
complete -c function -s S -l no-scope-shadowing -d "Do not shadow variable scope of calling function"
|
|
complete -c function -s w -l wraps -d "Inherit completions from the given command"
|