8 releases
0.1.7 | May 12, 2023 |
---|---|
0.1.6 | Apr 26, 2023 |
#1 in #typo
22 downloads per month
5KB
58 lines
suggest-command-not-found
Typo correction for not-found shell commands
Usage
- Install
suggest-command-not-found
$ cargo install suggest-command-not-found
- Add
command_not_found_handler
to your~/.zshrc
Or update yourcommand_not_found_handler() { if command -v suggest-command-not-found &> /dev/null; then exec suggest-command-not-found $@ else echo "zsh: command not found: $@" fi }
~/.bash_profile
if you are using Bash:command_not_found_handle() { if command -v suggest-command-not-found &> /dev/null; then exec suggest-command-not-found $@ else echo "bash: command not found: $@" fi }
- Make a typo
$ carog new mypj Error: command not found: "carog" new mypj ==> Did you mean "cargo"? $ notacommand Error: command not found: "notacommand" $ echo $? 127
Dependencies
~0–10MB
~43K SLoC