This commit is contained in:
Barrett Ruth 2026-02-25 13:06:20 -05:00
parent 7ebfcc63c3
commit 9c5d57bece
7 changed files with 80 additions and 53 deletions

View file

@ -32,11 +32,31 @@ end
---@return string[]
local function date_completions()
return {
'today', 'tomorrow', 'yesterday',
'+1d', '+2d', '+3d', '+1w', '+2w', '+1m',
'mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun',
'eod', 'eow', 'eom', 'eoq', 'eoy',
'sow', 'som', 'soq', 'soy',
'today',
'tomorrow',
'yesterday',
'+1d',
'+2d',
'+3d',
'+1w',
'+2w',
'+1m',
'mon',
'tue',
'wed',
'thu',
'fri',
'sat',
'sun',
'eod',
'eow',
'eom',
'eoq',
'eoy',
'sow',
'som',
'soq',
'soy',
'later',
}
end