mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-15 23:22:53 +08:00
Add completions for the status builtin
darcs-hash:20060131215933-ac50b-330b6cb15406ee62006d0dcd3b9ae4cf70ee1e68.gz
This commit is contained in:
parent
44e8dcd331
commit
bfefe7f262
10
init/completions/status.fish
Normal file
10
init/completions/status.fish
Normal file
@ -0,0 +1,10 @@
|
||||
|
||||
complete -c status -l is-command-substitution -d (_ "Test if a command substitution is currently evaluated")
|
||||
complete -c status -l is-block -d (_ "Test if a code block is currently evaluated")
|
||||
complete -c status -l is-interactive -d (_ "Test if this is an interactive shell")
|
||||
complete -c status -l is-login -d (_ "Test if this is a login shell")
|
||||
complete -c status -l is-full-job-control -d (_ "Test if all new jobs are put under job control")
|
||||
complete -c status -l is-interactive-job-control -d (_ "Test if only interactive new jobs are put under job control")
|
||||
complete -c status -l is-no-job-control -d (_ "Test if new jobs are never put under job control")
|
||||
complete -c status -s j -l job-control -a "full interactive none" -d (_ "Set which jobs are out under job control")
|
||||
complete -c status -s t -l print-stack-trace -d (_ "Print a list of all function calls leading up to running the current command")
|
Loading…
x
Reference in New Issue
Block a user