aboutsummaryrefslogtreecommitdiffhomepage
path: root/init
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-10-25 23:48:51 +1000
committerGravatar axel <axel@liljencrantz.se>2005-10-25 23:48:51 +1000
commitef4345968e06194bebb5a2bf59292f76268c3837 (patch)
tree65703a0e9ce746a5d24b87bd3cd344b5e8c73780 /init
parent319956c26bf57133d257a908f772342f38666056 (diff)
vared function used older uppercase names for fish colors
darcs-hash:20051025134851-ac50b-f21b7c3e876f98b39f1d2382e2919d77c38bfdb4.gz
Diffstat (limited to 'init')
-rw-r--r--init/fish_function.fish8
1 files changed, 4 insertions, 4 deletions
diff --git a/init/fish_function.fish b/init/fish_function.fish
index c9e44630..e7a86f5e 100644
--- a/init/fish_function.fish
+++ b/init/fish_function.fish
@@ -288,18 +288,18 @@ function vared -d "Edit variable value"
else
printf "vared: %s is an array variable. Use " $argv
- set_color $FISH_COLOR_COMMAND
+ set_color $fish_color_command
printf vared
- set_color $FISH_COLOR_NORMAL
+ set_color $fish_color_normal
printf " %s[n] to edit the n:th element of %s\n" $argv $argv
end
end
else
printf "vared: Expected exactly one argument, got %s.\n\nSynopsis:\n\t" (count $argv)
- set_color $FISH_COLOR_COMMAND
+ set_color $fish_color_command
printf vared
- set_color $FISH_COLOR_NORMAL
+ set_color $fish_color_normal
printf " VARIABLE\n"
end
end