mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
Add completion for the "expect" command
(cherry picked from commit 9e43e74723
)
This commit is contained in:
parent
c5240033df
commit
a4f5b9eb54
1 changed files with 9 additions and 0 deletions
9
share/completions/expect.fish
Normal file
9
share/completions/expect.fish
Normal file
|
@ -0,0 +1,9 @@
|
|||
complete -c expect -s c -r -d "execute command"
|
||||
complete -c expect -s d -n "__fish_not_contain_opt -s d" -d "diagnostic output"
|
||||
complete -c expect -s D -x -r -a "0 1" -n "__fish_not_contain_opt -s D" -d "debug value"
|
||||
complete -c expect -s f -r -d "script path"
|
||||
complete -c expect -s i -n "__fish_not_contain_opt -s i" -d "interactive mode"
|
||||
complete -c expect -s v -n "__fish_not_contain_opt -s v" -d "print version"
|
||||
complete -c expect -s N -n "__fish_not_contain_opt -s N" -d "skip global rc"
|
||||
complete -c expect -s n -n "__fish_not_contain_opt -s n" -d "skip user rc"
|
||||
complete -c expect -s b -n "__fish_not_contain_opt -s b" -d "read line by line"
|
Loading…
Reference in a new issue