From ef4345968e06194bebb5a2bf59292f76268c3837 Mon Sep 17 00:00:00 2001 From: axel Date: Tue, 25 Oct 2005 23:48:51 +1000 Subject: [PATCH] vared function used older uppercase names for fish colors darcs-hash:20051025134851-ac50b-f21b7c3e876f98b39f1d2382e2919d77c38bfdb4.gz --- init/fish_function.fish | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init/fish_function.fish b/init/fish_function.fish index c9e44630c..e7a86f5ed 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