dotfiles_fish_server/functions/fish_command_not_found.fish
Candifloss 55b74b9567 command-not-found handler
- No more lags upon command-not-found
2026-07-16 22:26:29 +05:30

4 lines
156 B
Fish

function fish_command_not_found --description "Minimal command-not-found handler"
printf "fish: %s: command not found\n" $argv[1] >&2
return 127
end