mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 17:28:19 +00:00
9367d4ff71
This does not include checks/function.fish because that currently includes a "; end" in a message that indent would remove, breaking the test.
11 lines
948 B
Fish
11 lines
948 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" -x
|
|
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" -r
|