* fix(buffer): escape hyphens in `infer_status` Lua patterns Problem: `infer_status` used `/-` in its Lua patterns, which is a lazy quantifier on `/` rather than a literal hyphen. This caused the function to always return `nil` for lines with an `/id/` prefix, so status was never inferred from buffer text during `reapply_dirty_inline`. Solution: escape hyphens as `%-` in both patterns. Also add debug logging to `on_bytes`, `reapply_dirty_inline`, `apply_extmarks`, and the `TextChanged`/`TextChangedI`/`InsertLeave` autocmds. * ci: format |
||
|---|---|---|
| .. | ||
| sync | ||
| buffer.lua | ||
| complete.lua | ||
| config.lua | ||
| diff.lua | ||
| health.lua | ||
| init.lua | ||
| log.lua | ||
| parse.lua | ||
| recur.lua | ||
| store.lua | ||
| textobj.lua | ||
| views.lua | ||