fix(config): use / as default cancelled icon

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.
This commit is contained in:
Barrett Ruth 2026-03-12 20:58:45 -04:00
parent 7c3ba31c43
commit fb61521b56
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
2 changed files with 2 additions and 2 deletions

View file

@ -982,7 +982,7 @@ Fields: ~
{priority} Priority task character. Default: '!' {priority} Priority task character. Default: '!'
{wip} Work-in-progress character. Default: 'w' {wip} Work-in-progress character. Default: 'w'
{blocked} Blocked task character. Default: 'b' {blocked} Blocked task character. Default: 'b'
{cancelled} Cancelled task character. Default: 'c' {cancelled} Cancelled task character. Default: '/'
{due} Due date prefix. Default: '.' {due} Due date prefix. Default: '.'
{recur} Recurrence prefix. Default: '~' {recur} Recurrence prefix. Default: '~'
{category} Category prefix. Default: '#' {category} Category prefix. Default: '#'

View file

@ -195,7 +195,7 @@ local defaults = {
priority = '!', priority = '!',
wip = 'w', wip = 'w',
blocked = 'b', blocked = 'b',
cancelled = 'c', cancelled = '/',
due = '.', due = '.',
recur = '~', recur = '~',
category = '#', category = '#',