From 8ff0e7441fb0b73c3fd2013efcbe3f0e030661c7 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Thu, 27 Sep 2018 07:52:29 -0500 Subject: [PATCH] fixup! Escape command name in __fish_default_command_not_found_handler --- share/config.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/config.fish b/share/config.fish index cdbaf1d8a..6202741fa 100644 --- a/share/config.fish +++ b/share/config.fish @@ -12,7 +12,7 @@ or set -g __fish_added_user_paths # Create the default command_not_found handler # function __fish_default_command_not_found_handler - printf "fish: Unknown command '%s'\n" (string escape $argv) >&2 + printf "fish: Unknown command '%s'\n" (string escape -- $argv) >&2 end if status --is-interactive