4 lines
156 B
Fish
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 |