2006-01-08 10:56:56 +08: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")
|
2006-01-11 20:26:40 +08:00
|
|
|
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")
|
2006-01-08 10:56:56 +08:00
|
|
|
complete -c read -s u -l unexport -d (_ "Do not export variable to subprocess")
|
2005-09-20 21:31:55 +08:00
|
|
|
|