command-not-found handler

- No more lags upon command-not-found
This commit is contained in:
Candifloss 2026-07-16 22:26:29 +05:30
parent 3afc95ee3d
commit 55b74b9567

View File

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