mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Add completions for trap and jobs
darcs-hash:20051217215926-ac50b-3078bbc64adfe19d17579a886a9e2ae7b0c594dd.gz
This commit is contained in:
parent
b8ea709c1e
commit
00be44a69a
2 changed files with 10 additions and 0 deletions
6
init/completions/jobs.fish
Normal file
6
init/completions/jobs.fish
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
|
||||
complete -c jobs -s p -l pid -d 'Show the process id of each process in the job'
|
||||
complete -c jobs -s g -l group -d 'Show group id of job'
|
||||
complete -c jobs -s c -l command -d 'Show commandname of each job'
|
||||
complete -c jobs -s l -l last -d 'Show status for last be started'
|
4
init/completions/trap.fish
Normal file
4
init/completions/trap.fish
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
complete -c trap -s l -l list-signals -d 'Display names of all signals'
|
||||
complete -c trap -s p -l print -d 'Display all currently defined trap handlers'
|
||||
complete -c trap -s h -l help -d 'Display help and exit'
|
Loading…
Reference in a new issue