From 1afdbb848ea6b2b77087ca2296690bcfa2eceed7 Mon Sep 17 00:00:00 2001 From: Kenneth Vestergaard Date: Sat, 9 Mar 2013 00:52:36 +0100 Subject: [PATCH] Minor fix to order of arguments in error-message. --- 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 feadaadc2..fe548dd1d 100644 --- a/share/functions/vared.fish +++ b/share/functions/vared.fish @@ -39,7 +39,7 @@ function vared --description "Edit variable value" end else - printf (_ '%s: %s is an array variable. Use %svared%s %s[n] to edit the n:th element of %s\n') $argv (set_color $fish_color_command) (set_color $fish_color_normal) vared $argv $argv + printf (_ '%s: %s is an array variable. Use %svared%s %s[n] to edit the n:th element of %s\n') vared $argv (set_color $fish_color_command) (set_color $fish_color_normal) $argv $argv end end else