fixup! Escape command name in __fish_default_command_not_found_handler

This commit is contained in:
Mahmoud Al-Qudsi 2018-09-27 07:52:29 -05:00
parent 3b3361685a
commit 8ff0e7441f

View File

@ -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