2
2
镜像自地址 https://github.com/Hilbis/Hilbish 已同步 2025-07-11 05:22:02 +00:00

fix: check if there is cmd input before attempting to add to history (closes #206)

这个提交包含在:
TorchedSammy 2022-10-10 18:11:09 -04:00
父节点 22f6ea8a3e
当前提交 7db2a2c826
签署人:: sammyette
GPG 密钥 ID: 904FC49417B44DCD

查看文件

@ -1,5 +1,6 @@
local bait = require 'bait' local bait = require 'bait'
bait.catch('command.exit', function(_, cmd, priv) bait.catch('command.exit', function(_, cmd, priv)
if not cmd then return end
if not priv and hilbish.opts.history then hilbish.history.add(cmd) end if not priv and hilbish.opts.history then hilbish.history.add(cmd) end
end) end)