2017-10-11 17:17:35 +00:00
|
|
|
complete -c read -s h -l help -d "Display help and exit"
|
|
|
|
complete -c read -s p -l prompt -d "Set prompt command" -x
|
|
|
|
complete -c read -s x -l export -d "Export variable to subprocess"
|
|
|
|
complete -c read -s g -l global -d "Make variable scope global"
|
|
|
|
complete -c read -s l -l local -d "Make variable scope local"
|
|
|
|
complete -c read -s U -l universal -d "Make variable scope universal, i.e. share variable with all the users fish processes on this computer"
|
|
|
|
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"
|
2019-09-24 05:43:38 +00:00
|
|
|
complete -c read -s c -l command -d "Initial contents of read buffer when reading interactively" -r
|
2018-03-09 17:59:50 +00:00
|
|
|
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)"
|
2019-09-24 05:43:38 +00:00
|
|
|
complete -c read -s n -l nchars -d "Read the specified number of characters" -x
|
2017-10-11 17:17:35 +00:00
|
|
|
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
|
2018-11-12 15:08:45 +00:00
|
|
|
complete -c read -s z -l null -d "Use NUL character as line terminator"
|
|
|
|
complete -c read -s l -l line -d "Read each line into its own variable"
|