fix(config): update default keymaps to match vimdoc (#116)

Problem: four keymap defaults in `config.lua` still used the old
deprecated keys (`!`, `D`, `U`, `F`) while `doc/pending.txt` documents
the `g`-prefixed replacements (`g!`, `gd`, `gz`, `gf`).

Solution: update `priority`, `date`, `undo`, and `filter` defaults to
`g!`, `gd`, `gz`, and `gf` respectively.
This commit is contained in:
Barrett Ruth 2026-03-09 00:10:09 -04:00 committed by GitHub
parent c37cf7cc3a
commit 96577890cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -117,10 +117,10 @@ local defaults = {
close = 'q',
toggle = '<CR>',
view = '<Tab>',
priority = '!',
date = 'D',
undo = 'U',
filter = 'F',
priority = 'g!',
date = 'gd',
undo = 'gz',
filter = 'gf',
open_line = 'o',
open_line_above = 'O',
a_task = 'at',