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:
parent
7c3ba31c43
commit
fb61521b56
2 changed files with 2 additions and 2 deletions
|
|
@ -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: '#'
|
||||||
|
|
|
||||||
|
|
@ -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 = '#',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue