feat: 日期Lua不再包含空格 close #469
This commit is contained in:
parent
7ebf8ff1fa
commit
9b05c4bf93
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user