feat: 日期Lua不再包含空格 close #469

This commit is contained in:
Dvel 2023-09-08 20:13:28 +08:00
parent 7ebf8ff1fa
commit 9b05c4bf93

View File

@ -27,7 +27,7 @@ function M.func(input, seg, env)
yield_cand(seg, os.date('%Y/%m/%d', current_time)) yield_cand(seg, os.date('%Y/%m/%d', current_time))
yield_cand(seg, os.date('%Y.%m.%d', current_time)) yield_cand(seg, os.date('%Y.%m.%d', current_time))
yield_cand(seg, os.date('%Y%m%d', current_time)) yield_cand(seg, os.date('%Y%m%d', current_time))
yield_cand(seg, os.date('%Y %m %d ', current_time):gsub(' 0', ' ')) yield_cand(seg, os.date('%Y年%m月%d日', current_time):gsub('年0', ''):gsub('月0',''))
-- 时间 -- 时间
elseif (input == M.time) then elseif (input == M.time) then