mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-05 01:33:41 +08:00
f971e02256
darcs-hash:20050922201652-ac50b-f70e7607b4ace24da4020f2d432718dc335e5bdd.gz
47 lines
1.2 KiB
Fish
47 lines
1.2 KiB
Fish
|
|
complete -y set_color
|
|
|
|
complete -c set -s e -l erase -d "Erase variable"
|
|
complete -c set -s x -l export -d "Export variable to subprocess"
|
|
complete -c set -s u -l unexport -d "Do not export variable to subprocess"
|
|
complete -c set -s g -l global -d "Make variable scope global"
|
|
complete -c set -s l -l local -d "Make variable scope local"
|
|
complete -c set -s U -l universal -d "Make variable scope universal, i.e. shared between all fish terminals"
|
|
complete -c set -s q -l query -d "Test if variable is defined"
|
|
complete -c set -s h -l help -d "Display help and exit"
|
|
|
|
function __fish_set_is_first -d 'Test if no non-switch argument has been specified yet'
|
|
set -- cmd (commandline -poc)
|
|
set -e -- cmd[1]
|
|
for i in $cmd
|
|
switch $i
|
|
case '-*'
|
|
|
|
case '*'
|
|
return 1;
|
|
end
|
|
end
|
|
return 0
|
|
end
|
|
|
|
complete -c set -n '__fish_set_is_first' -x -a "(set|sed -e 's/ /\tVariable: /')"
|
|
|
|
function __fish_set_is_color -d 'Test if We are specifying a color value for the prompt'
|
|
set -- cmd (commandline -poc)
|
|
set -e -- cmd[1]
|
|
for i in $cmd
|
|
switch $i
|
|
|
|
case 'fish_color_*' 'fish_pager_color_*'
|
|
return 0
|
|
|
|
case '-*'
|
|
|
|
case '*'
|
|
return 1
|
|
end
|
|
end
|
|
end
|
|
|
|
complete -c set -n '__fish_set_is_color' -x -a '$__fish_colors' -d Color
|