Files
main/util/shell/zsh/files/zsh_command_not_found
T
2019-02-14 01:52:36 +03:00

12 lines
258 B
Bash

#!/bin/zsh
#
#command not found handler for zsh.
#This handler is part of Zsh and is hooked to command-not-found program.
#man zshmisc is your friend.
function command_not_found_handler()
{
/usr/bin/python /usr/bin/command-not-found $1;
return $?
}