mirror of
https://github.com/nix-community/comma.git
synced 2026-01-14 02:08:26 +01:00
13 lines
212 B
Bash
Executable file
13 lines
212 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# bash command not found handler
|
|
command_not_found_handle() {
|
|
comma --ask "$@"
|
|
return $?
|
|
}
|
|
|
|
# zsh compatibility
|
|
command_not_found_handler () {
|
|
command_not_found_handle "$@"
|
|
return $?
|
|
}
|