mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 13:23:09 +00:00
default_command_not_found_handler: Only use $argv[1]
That's probably the nicer fix, otherwise this would print things like Unknown command 'aiohsd 1 2 3' when it should just say Unknown command aiohsd
This commit is contained in:
parent
6b060a54e3
commit
63c072e225
1 changed files with 1 additions and 1 deletions
|
@ -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[1]) >&2
|
||||
end
|
||||
|
||||
if status --is-interactive
|
||||
|
|
Loading…
Reference in a new issue