mirror of https://github.com/Hilbis/Hilbish
12 lines
264 B
Lua
12 lines
264 B
Lua
|
local bait = require 'bait'
|
||
|
|
||
|
-- Hook handles
|
||
|
bait.catch('command.not-found', function(cmd)
|
||
|
print(string.format('hilbish: %s not found', cmd))
|
||
|
end)
|
||
|
|
||
|
bait.catch('command.not-executable', function(cmd)
|
||
|
print(string.format('hilbish: %s: not executable', cmd))
|
||
|
end)
|
||
|
|