aboutsummaryrefslogtreecommitdiffhomepage
path: root/init
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-11 22:26:40 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-11 22:26:40 +1000
commit032a736840f95044c3446567d890ce935564c0cc (patch)
tree8660835ed42cd3b870aa237b97f29ad1d25553df /init
parentd9663a4ec4e032917127b154ee6130c9cbf93312 (diff)
Make the read builtin able to create universal variables
darcs-hash:20060111122640-ac50b-4b411b9822a44ae105b71ca51ee47d0aa13a1a62.gz
Diffstat (limited to 'init')
-rw-r--r--init/completions/read.fish1
1 files changed, 1 insertions, 0 deletions
diff --git a/init/completions/read.fish b/init/completions/read.fish
index cb9bf842..e6bac135 100644
--- a/init/completions/read.fish
+++ b/init/completions/read.fish
@@ -3,5 +3,6 @@ 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")