pending.nvim/lua/pending
Barrett Ruth d176ccccd1
fix(init): fix cursor position when navigating from quickfix (#93)
Problem: `:Pending due` quickfix items landed on line 1 instead of
the task line. The `BufEnter` redirect branch captured cursor before
quickfix had positioned it in the new window, so the stale position
was used when transferring focus back to the registered pending window.

Solution: move cursor capture inside `vim.schedule` so it reads after
quickfix navigation has completed. Also guard `clear_marks` behind a
`modified` check so extmarks are only cleared on actual edits.
2026-03-07 01:38:12 -05:00
..
sync refactor: normalize log message grammar and capitalization (#89) 2026-03-06 18:38:17 -05:00
buffer.lua ci: cleanup 2026-03-06 21:36:46 -05:00
complete.lua refactor: remove file token feature (#50) 2026-02-26 22:41:38 -05:00
config.lua feat(buffer): add configurable category-level folds (#91) 2026-03-06 20:08:49 -05:00
diff.lua fix: empty buffer placeholder and checkbox pattern fixes (#82) 2026-03-06 12:07:52 -05:00
health.lua fix(diff): preserve due/rec when absent from buffer line (#68) 2026-03-05 12:46:54 -05:00
init.lua fix(init): fix cursor position when navigating from quickfix (#93) 2026-03-07 01:38:12 -05:00
log.lua fix(diff): preserve due/rec when absent from buffer line (#68) 2026-03-05 12:46:54 -05:00
parse.lua fix(diff): preserve due/rec when absent from buffer line (#68) 2026-03-05 12:46:54 -05:00
recur.lua feat: time-aware due dates, persistent undo, @return audit (#33) 2026-02-25 20:37:50 -05:00
store.lua fix(diff): preserve due/rec when absent from buffer line (#68) 2026-03-05 12:46:54 -05:00
textobj.lua fix(diff): preserve due/rec when absent from buffer line (#68) 2026-03-05 12:46:54 -05:00
views.lua feat: warn on dirty buffer before store-dependent actions (#83) 2026-03-06 12:08:10 -05:00