pending.nvim/lua/pending
Barrett Ruth dcb6a4781d
feat(filter): oil-like editable filter line (#43)
* feat(filter): oil-like editable filter line with predicate dispatch

Problem: no way to narrow the pending buffer to a subset of tasks
without manual scrolling; filtered-out tasks would be silently deleted
on :w because diff.apply() marks unseen IDs as deleted.

Solution: add a FILTER: line rendered at the top of the buffer when a
filter is active. The line is editable — :w re-parses it and updates
the hidden set. diff.apply() gains a hidden_ids param that prevents
filtered-out tasks from being marked deleted. Predicates: cat:X,
overdue, today, priority (space-separated AND). :Pending filter sets
it programmatically; :Pending filter clear removes it.

* ci: format
2026-02-26 18:29:56 -05:00
..
sync feat(sync): backend interface + CLI refactor (#42) 2026-02-26 17:59:04 -05:00
buffer.lua feat(filter): oil-like editable filter line (#43) 2026-02-26 18:29:56 -05:00
complete.lua feat: time-aware due dates, persistent undo, @return audit (#33) 2026-02-25 20:37:50 -05:00
config.lua feat(sync): backend interface + CLI refactor (#42) 2026-02-26 17:59:04 -05:00
diff.lua feat(filter): oil-like editable filter line (#43) 2026-02-26 18:29:56 -05:00
health.lua feat(sync): backend interface + CLI refactor (#42) 2026-02-26 17:59:04 -05:00
init.lua feat(filter): oil-like editable filter line (#43) 2026-02-26 18:29:56 -05:00
parse.lua feat: statusline API, counts, and PendingStatusChanged event (#40) 2026-02-26 16:30:06 -05:00
recur.lua feat: time-aware due dates, persistent undo, @return audit (#33) 2026-02-25 20:37:50 -05:00
store.lua feat: :Pending edit command for CLI metadata editing (#41) 2026-02-26 16:34:07 -05:00
textobj.lua feat: text objects and motions for the pending buffer (#39) 2026-02-26 16:28:58 -05:00
views.lua feat(filter): oil-like editable filter line (#43) 2026-02-26 18:29:56 -05:00