From 96577890cbafee8486fd68542402bb95d22fd344 Mon Sep 17 00:00:00 2001 From: Barrett Ruth <62671086+barrettruth@users.noreply.github.com> Date: Mon, 9 Mar 2026 00:10:09 -0400 Subject: [PATCH] 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. --- lua/pending/config.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/pending/config.lua b/lua/pending/config.lua index c947b40..1d4c00a 100644 --- a/lua/pending/config.lua +++ b/lua/pending/config.lua @@ -117,10 +117,10 @@ local defaults = { close = 'q', toggle = '', view = '', - 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',