mirror of https://github.com/Hilbis/Hilbish
557 B
557 B
-
command.preexec
-> input, cmdStr > Thrown before a command is executed. Theinput
is the user written command, whilecmdStr
is what will be executed (input
will have aliases whilecmdStr
will have alias resolved input). -
command.exit
-> code, cmdStr > Thrown when a command exits.code
is the exit code of the command, andcmdStr
is the command that was run. -
command.not-found
-> cmdStr > Thrown when a command is not found. -
command.not-executable
-> cmdStr > Thrown when Hilbish attempts to run a file that is not executable.