|
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)
|
|
|