diff --git a/functions/fish_command_not_found.fish b/functions/fish_command_not_found.fish new file mode 100644 index 0000000..02b64d1 --- /dev/null +++ b/functions/fish_command_not_found.fish @@ -0,0 +1,4 @@ +function fish_command_not_found --description "Minimal command-not-found handler" + printf "fish: %s: command not found\n" $argv[1] >&2 + return 127 +end \ No newline at end of file