aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/set.fish
diff options
context:
space:
mode:
Diffstat (limited to 'share/completions/set.fish')
-rw-r--r--share/completions/set.fish22
1 files changed, 11 insertions, 11 deletions
diff --git a/share/completions/set.fish b/share/completions/set.fish
index 6526c501..386fd780 100644
--- a/share/completions/set.fish
+++ b/share/completions/set.fish
@@ -55,15 +55,15 @@ end
# Regular switches, set only accepts these before the variable name,
# so we need to test using __fish_is_first_token
-complete -c set -n '__fish_is_first_token' -s e -l erase -d (N_ "Erase variable")
-complete -c set -n '__fish_is_first_token' -s x -l export -d (N_ "Export variable to subprocess")
-complete -c set -n '__fish_is_first_token' -s u -l unexport -d (N_ "Do not export variable to subprocess")
-complete -c set -n '__fish_is_first_token' -s g -l global -d (N_ "Make variable scope global")
-complete -c set -n '__fish_is_first_token' -s l -l local -d (N_ "Make variable scope local")
-complete -c set -n '__fish_is_first_token' -s U -l universal -d (N_ "Make variable scope universal, i.e. share variable with all the users fish processes on this computer")
-complete -c set -n '__fish_is_first_token' -s q -l query -d (N_ "Test if variable is defined")
-complete -c set -n '__fish_is_first_token' -s h -l help -d (N_ "Display help and exit")
-complete -c set -n '__fish_is_first_token' -s n -l names -d (N_ "List the names of the variables, but not their value")
+complete -c set -n '__fish_is_first_token' -s e -l erase --description "Erase variable"
+complete -c set -n '__fish_is_first_token' -s x -l export --description "Export variable to subprocess"
+complete -c set -n '__fish_is_first_token' -s u -l unexport --description "Do not export variable to subprocess"
+complete -c set -n '__fish_is_first_token' -s g -l global --description "Make variable scope global"
+complete -c set -n '__fish_is_first_token' -s l -l local --description "Make variable scope local"
+complete -c set -n '__fish_is_first_token' -s U -l universal --description "Make variable scope universal, i.e. share variable with all the users fish processes on this computer"
+complete -c set -n '__fish_is_first_token' -s q -l query --description "Test if variable is defined"
+complete -c set -n '__fish_is_first_token' -s h -l help --description "Display help and exit"
+complete -c set -n '__fish_is_first_token' -s n -l names --description "List the names of the variables, but not their value"
# Complete using preexisting variable names
@@ -71,8 +71,8 @@ complete -c set -n '__fish_is_first_token' -x -a "(set|sed -e 's/ /'\t'Variable:
# Color completions
complete -c set -n '__fish_set_is_color' -x -a '(set_color --print-colors)' -d (N_ Color)
-complete -c set -n '__fish_set_is_color' -s b -l background -x -a '(set_color --print-colors)' -d (N_ "Change background color")
-complete -c set -n '__fish_set_is_color' -s o -l bold -d (N_ 'Make font bold')
+complete -c set -n '__fish_set_is_color' -s b -l background -x -a '(set_color --print-colors)' --description "Change background color"
+complete -c set -n '__fish_set_is_color' -s o -l bold --description 'Make font bold'
# Locale completions
complete -c set -n '__fish_is_first_token' -x -a '$__fish_locale_vars' -d 'Locale variable'