zsh package added

This commit is contained in:
Hasan Basri
2019-02-14 01:52:36 +03:00
parent dd4a30bf8b
commit 0e6911b500
8 changed files with 363 additions and 9 deletions
@@ -0,0 +1,11 @@
#!/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 $?
}