mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 08:27:26 +00:00
c2f6c6c1d2
darcs-hash:20060301165347-ac50b-3df9feec60dd9860e0988396d10b550a501f6802.gz
10 lines
919 B
Fish
10 lines
919 B
Fish
|
|
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")
|