mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
Update completions for read builtin
Change short option for `--shell` to `-S` per #4490 and add description for -s/--silent
This commit is contained in:
parent
2a266c4d48
commit
eaa5958b77
1 changed files with 2 additions and 1 deletions
|
@ -7,7 +7,8 @@ complete -c read -s U -l universal -d "Make variable scope universal, i.e. share
|
|||
complete -c read -s u -l unexport -d "Do not export variable to subprocess"
|
||||
complete -c read -s m -l mode-name -d "Name to load/save history under" -r -a "read fish"
|
||||
complete -c read -s c -l command -d "Initial contents of read buffwhen reading interactively"
|
||||
complete -c read -s s -l shell -d "Use syntax highlighting, tab completions and command termination suitable for entering shellscript code"
|
||||
complete -c read -s S -l shell -d "Use syntax highlighting, tab completions and command termination suitable for entering shellscript code"
|
||||
complete -c read -s s -l silent -d "Secure mode: mask characters at the command line (suitable for passwords)"
|
||||
complete -c read -s n -l nchars -d "Read the specified number of characters"
|
||||
complete -c read -s a -l array -d "Store the results as an array"
|
||||
complete -c read -s R -l right-prompt -d "Set right-hand prompt command" -x
|
||||
|
|
Loading…
Reference in a new issue