mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 05:43:11 +00:00
1145a5d483
darcs-hash:20061120152518-ac50b-cbd3d14af4fd2d67304278d442443decbac1ef7c.gz
11 lines
984 B
Fish
11 lines
984 B
Fish
|
|
complete -c status -s h -l help -d (N_ "Display help and exit" )
|
|
complete -c status -l is-command-substitution -d (N_ "Test if a command substitution is currently evaluated")
|
|
complete -c status -l is-block -d (N_ "Test if a code block is currently evaluated")
|
|
complete -c status -l is-interactive -d (N_ "Test if this is an interactive shell")
|
|
complete -c status -l is-login -d (N_ "Test if this is a login shell")
|
|
complete -c status -l is-full-job-control -d (N_ "Test if all new jobs are put under job control")
|
|
complete -c status -l is-interactive-job-control -d (N_ "Test if only interactive new jobs are put under job control")
|
|
complete -c status -l is-no-job-control -d (N_ "Test if new jobs are never put under job control")
|
|
complete -c status -s j -l job-control -xa "full interactive none" -d (N_ "Set which jobs are out under job control")
|
|
complete -c status -s t -l print-stack-trace -d (N_ "Print a list of all function calls leading up to running the current command")
|