From fb61521b56f08cc0aa75178a09fe29b4437a8c7e Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Thu, 12 Mar 2026 20:58:45 -0400 Subject: [PATCH] fix(config): use `/` as default cancelled icon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: the cancelled icon defaulted to `c`, inconsistent with the `g/` keymap. Other statuses match: `gw` → `[w]`, `gb` → `[b]`. Solution: change `icons.cancelled` default from `c` to `/` so the keymap and state char are consistent. --- doc/pending.txt | 2 +- lua/pending/config.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/pending.txt b/doc/pending.txt index 83d09b8..541f773 100644 --- a/doc/pending.txt +++ b/doc/pending.txt @@ -982,7 +982,7 @@ Fields: ~ {priority} Priority task character. Default: '!' {wip} Work-in-progress character. Default: 'w' {blocked} Blocked task character. Default: 'b' - {cancelled} Cancelled task character. Default: 'c' + {cancelled} Cancelled task character. Default: '/' {due} Due date prefix. Default: '.' {recur} Recurrence prefix. Default: '~' {category} Category prefix. Default: '#' diff --git a/lua/pending/config.lua b/lua/pending/config.lua index 368cf21..c282dbd 100644 --- a/lua/pending/config.lua +++ b/lua/pending/config.lua @@ -195,7 +195,7 @@ local defaults = { priority = '!', wip = 'w', blocked = 'b', - cancelled = 'c', + cancelled = '/', due = '.', recur = '~', category = '#',