refactor(icons): unify category/header icon and use checkbox overlays
Problem: `header` and `category` were separate icons for the same concept. The icon overlay replaced `[ ]` with a bare character, hiding the markdown checkbox syntax. Header format `## ` produced a double-space with single-char icons. Solution: merge `header` into `category` (one icon for both header lines and EOL labels). Overlay renders `[icon]` preserving bracket syntax. Change header line format from `## ` to `# ` so the 2-char overlay (`# `) maps cleanly.
This commit is contained in:
parent
26b14b6ba8
commit
530009d830
9 changed files with 61 additions and 81 deletions
|
|
@ -26,18 +26,18 @@ luarocks install pending.nvim
|
|||
|
||||
## Icons
|
||||
|
||||
pending.nvim renders task status and metadata using configurable icon characters. The defaults are ASCII-only (no unicode or nerd font required):
|
||||
All display characters are configurable. Defaults produce markdown-style checkboxes (`[ ]`, `[x]`, `[!]`):
|
||||
|
||||
```lua
|
||||
vim.g.pending = {
|
||||
icons = {
|
||||
pending = '-', done = 'x', priority = '!',
|
||||
header = '>', due = '.', recur = '~', category = '#',
|
||||
pending = ' ', done = 'x', priority = '!',
|
||||
due = '.', recur = '~', category = '#',
|
||||
},
|
||||
}
|
||||
```
|
||||
|
||||
See `:help pending.Icons` for unicode and nerd font examples.
|
||||
See `:help pending.Icons` for nerd font examples.
|
||||
|
||||
## Acknowledgements
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue