mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 21:18:53 +00:00
Add setsid completions
This commit is contained in:
parent
0fefdb458f
commit
0df65a106d
1 changed files with 9 additions and 0 deletions
9
share/completions/setsid.fish
Normal file
9
share/completions/setsid.fish
Normal file
|
@ -0,0 +1,9 @@
|
|||
# setsid is a tool to run a program in a new session.
|
||||
# It is part of the util-linux package.
|
||||
# See: https://www.kernel.org/pub/linux/utils/util-linux
|
||||
|
||||
complete -c setsid -x -d 'Command to run' -a '(__fish_complete_subcommand)'
|
||||
complete -c setsid -n '__fish_no_arguments' -l ctty -s c -d 'Set controlling terminal to current one'
|
||||
complete -c setsid -n '__fish_no_arguments' -l wait -s w -d 'Wait until program ends and return its exit value'
|
||||
complete -c setsid -n '__fish_no_arguments' -l version -s V -d 'Display version and exit'
|
||||
complete -c setsid -n '__fish_no_arguments' -l help -s h -d 'Display help and exit'
|
Loading…
Reference in a new issue