From bd03c3fbc5cc07d38d3831eb248db0e103d29370 Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Fri, 11 Nov 2016 14:07:48 -0800 Subject: [PATCH] vared.fish don't use undocumented 'reset' color ... there is no practical difference in behavior using this here and it is not documented. --- share/functions/vared.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/vared.fish b/share/functions/vared.fish index 97c233348..ecd157e9d 100644 --- a/share/functions/vared.fish +++ b/share/functions/vared.fish @@ -37,7 +37,7 @@ function vared --description "Edit variable value" end end else - printf (_ '%s: %s is an array variable. Use %svared%s %s[n]%s to edit the n:th element of %s\n') vared $argv (set_color $fish_color_command; echo) (set_color $fish_color_normal; echo) $argv (set_color reset; echo) $argv + printf (_ '%s: %s is an array variable. Use %svared%s %s[n]%s to edit the n:th element of %s\n') vared $argv (set_color $fish_color_command; echo) (set_color $fish_color_normal; echo) $argv (set_color normal; echo) $argv end end else