pending.nvim/lua
Barrett Ruth 6fd24afbfa fix(diff): match optional checkbox char in parse_buffer patterns
Problem: `parse_buffer` used `%[.%]` which requires exactly one
character between brackets, failing to parse empty `[]` checkboxes.

Solution: Change to `%[.?%]` so the character is optional, matching
`[]`, `[ ]`, `[x]`, and `[!]` uniformly.
2026-03-06 11:24:05 -05:00
..
pending fix(diff): match optional checkbox char in parse_buffer patterns 2026-03-06 11:24:05 -05:00