No description
Find a file
Barrett Ruth 0a64691edd refactor: move forge ref detection from parse.body() to diff
Problem: `parse.body()` stripped forge tokens from the description,
losing the raw text. This made inline overlay rendering impossible
since the token no longer existed in the buffer.

Solution: remove the `forge.parse_ref()` branch from `parse.body()`
and call `forge.find_refs()` in `diff.parse_buffer()` instead. The
description now retains forge tokens verbatim; `_extra._forge_ref`
is still populated from the first matched ref.
2026-03-10 18:58:24 -04:00
.github doc: minify readme (#24) 2026-02-25 09:40:06 -05:00
doc docs: document forge links feature 2026-03-10 17:44:54 -04:00
lua/pending refactor: move forge ref detection from parse.body() to diff 2026-03-10 18:58:24 -04:00
plugin feat: add <C-a> / <C-x> keymaps for priority increment/decrement (#114) 2026-03-08 20:49:05 -04:00
scripts fix: harden sync backends and fix edit recompute (#66) 2026-03-05 11:50:13 -05:00
spec test(forge): add forge parsing spec 2026-03-10 17:44:48 -04:00
syntax refactor: adopt markdown-style checkbox buffer format (#20) 2026-02-24 23:21:55 -05:00
.busted build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
.editorconfig build: initial repo scaffold 2026-02-24 15:08:35 -05:00
.gitignore fix: harden sync backends and fix edit recompute (#66) 2026-03-05 11:50:13 -05:00
.luarc.json refactor(config): default icons to ascii (#55) 2026-03-04 17:49:30 -05:00
.pre-commit-config.yaml ci: format 2026-02-24 15:17:24 -05:00
flake.lock build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
flake.nix ci: nix 2026-03-04 14:07:04 -05:00
LICENSE build: initial repo scaffold 2026-02-24 15:08:35 -05:00
pending.nvim-scm-1.rockspec feat: rename 2026-02-24 15:21:44 -05:00
README.md docs: document forge links feature 2026-03-10 17:44:54 -04:00
selene.toml build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
stylua.toml build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00
vim.yaml build: add tooling and dev environment configs 2026-02-24 15:08:44 -05:00

pending.nvim

Edit tasks like text.

Oil-like task management for todos in Neovim, inspired by oil.nvim and vim-fugitive

https://github.com/user-attachments/assets/f3898ecb-ec95-43fe-a71f-9c9f49628ba9

Features

  • Oil-style buffer editing: standard Vim motions for all task operations
  • Inline metadata: due:, cat:, rec: tokens parsed on :w
  • Rich date input: relative (+3d, tomorrow), weekdays, ordinals, custom formats, time suffixes
  • Recurring tasks with automatic next-date spawning on completion
  • Category and queue views with foldable sections
  • Multi-level undo (up to 20 saves, persisted across sessions)
  • Text objects (at/it/aC/iC) and motions (]]/[[/]t/[t)
  • Omnifunc completion for due:, cat:, and rec: tokens
  • Filters: cat:X, overdue, today, priority, wip, blocked
  • Google Calendar one-way push via OAuth PKCE
  • Google Tasks bidirectional sync via OAuth PKCE
  • S3 whole-store sync via AWS CLI with cross-device merge
  • Auto-authentication: sync actions trigger auth flows automatically
  • Forge links: reference GitHub/GitLab/Codeberg issues and PRs inline

Requirements

  • Neovim 0.10+
  • (Optionally) curl for Google Calendar and Google Tasks sync
  • (Optionally) aws CLI for S3 sync

Installation

Install with your package manager of choice or via luarocks:

luarocks install pending.nvim

Documentation

:help pending.nvim

Acknowledgements