ci: format
Some checks are pending
quality / changes (push) Waiting to run
quality / Lua Format Check (push) Blocked by required conditions
quality / Lua Lint Check (push) Blocked by required conditions
quality / Lua Type Check (push) Blocked by required conditions
quality / Markdown Format Check (push) Blocked by required conditions
test / Test (Neovim nightly) (push) Waiting to run
test / Test (Neovim stable) (push) Waiting to run

This commit is contained in:
Barrett Ruth 2026-03-12 21:01:11 -04:00
parent c04057dd9f
commit 0b0b64fc3d
3 changed files with 25 additions and 10 deletions

View file

@ -245,8 +245,17 @@ end, {
for word in after_filter:gmatch('%S+') do
used[word] = true
end
local candidates =
{ 'clear', 'overdue', 'today', 'priority', 'done', 'pending', 'wip', 'blocked', 'cancelled' }
local candidates = {
'clear',
'overdue',
'today',
'priority',
'done',
'pending',
'wip',
'blocked',
'cancelled',
}
local store = require('pending.store')
local s = store.new(store.resolve_path())
s:load()