refactor date translator #265
This commit is contained in:
parent
dba1fc5987
commit
9b9788d112
@ -6,7 +6,6 @@ local formats = {
|
|||||||
'%Y/%m/%d',
|
'%Y/%m/%d',
|
||||||
'%Y.%m.%d',
|
'%Y.%m.%d',
|
||||||
'%Y%m%d',
|
'%Y%m%d',
|
||||||
'%Y 年 ' .. tostring(tonumber(os.date('%m'))) .. ' 月 ' .. tostring(tonumber(os.date('%d'))) .. ' 日'
|
|
||||||
},
|
},
|
||||||
time = {
|
time = {
|
||||||
'%H:%M',
|
'%H:%M',
|
||||||
@ -50,6 +49,7 @@ local function date_translator(input, seg, env)
|
|||||||
for _, fmt in ipairs(formats.date) do
|
for _, fmt in ipairs(formats.date) do
|
||||||
yield_cand('date', os.date(fmt, current_time))
|
yield_cand('date', os.date(fmt, current_time))
|
||||||
end
|
end
|
||||||
|
yield_cand('date', os.date('%Y 年 %m 月 %d 日', current_time):gsub(' 0', ' '))
|
||||||
end
|
end
|
||||||
-- 时间
|
-- 时间
|
||||||
if (input == env.time) then
|
if (input == env.time) then
|
||||||
|
Loading…
Reference in New Issue
Block a user