No description
Find a file
Barrett Ruth 59d2950fda fix(gtasks): async operations, error notifications, buffer refresh
Problem: Sync operations blocked the editor, `push_pass` silently
dropped delete/update/create API errors, and the buffer was not
re-rendered after push/pull/sync.

Solution: Wrap `push`, `pull`, `sync` in `oauth.async()`, add
`vim.notify` for all `push_pass` failure paths, and re-render the
pending buffer after each operation.
2026-03-05 11:18:41 -05:00
.github doc: minify readme (#24) 2026-02-25 09:40:06 -05:00
doc Google Tasks sync + shared OAuth module (#60) 2026-03-05 01:21:18 -05:00
lua/pending fix(gtasks): async operations, error notifications, buffer refresh 2026-03-05 11:18:41 -05:00
plugin feat: Google Tasks bidirectional sync and CLI refactor (#59) 2026-03-05 01:01:29 -05:00
scripts ci: fix local script (#56) 2026-03-04 17:52:25 -05:00
spec Google Tasks sync + shared OAuth module (#60) 2026-03-05 01:21:18 -05: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 build: initial repo scaffold 2026-02-24 15:08:35 -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 refactor(icons): ascii defaults, checkbox overlays, and cleanup (#57) 2026-03-04 18:44:41 -05: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. :w saves them.

demo

Requirements

  • Neovim 0.10+
  • (Optionally) curl and openssl for Google Calendar and Google Task sync

Installation

Install with your package manager of choice or via luarocks:

luarocks install pending.nvim

Documentation

:help pending.nvim

Icons

All display characters are configurable. Defaults produce markdown-style checkboxes ([ ], [x], [!]):

vim.g.pending = {
  icons = {
    pending = ' ', done = 'x', priority = '!',
    due = '.', recur = '~', category = '#',
  },
}

See :help pending.Icons for nerd font examples.

Acknowledgements