mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 21:53:09 +08:00
6 lines
315 B
Fish
6 lines
315 B
Fish
|
|
complete -c trap -s l -l list-signals --description 'Display names of all signals'
|
|
complete -c trap -s p -l print --description 'Display all currently defined trap handlers'
|
|
complete -c trap -s h -l help --description 'Display help and exit'
|
|
complete -c trap -a '(trap -l | sed "s/ /\n/g")' --description 'Signal'
|