diffs.nvim/lua/diffs
Barrett Ruth a7d0c04ccf fix(highlight): make intra-line bg visible under line backgrounds
Problem: `line_hl_group` bg unconditionally overrides `hl_group` bg
regardless of priority (neovim/neovim#31151). `DiffsAddText`/
`DiffsDeleteText` at p201 were invisible under `DiffsAdd`/`DiffsDelete`
`line_hl_group` at p200 because they operate on separate stacking layers.

Solution: replace `line_hl_group` with `hl_group` + `hl_eol` +
`end_row` for line backgrounds, putting them on the same layer as
intra-line highlights so priority governs stacking. Split
`number_hl_group` into a separate extmark to prevent gutter bleed via
`end_row`. Use raw `DiffAdd.bg`/`DiffDelete.bg` for `DiffsAddText`/
`DiffsDeleteText` instead of alpha-blending toward Normal.bg, which
produced indistinguishable colors on dark themes.
2026-03-13 21:13:57 -04:00
..
commands.lua feat: unified diff conflict resolution for unmerged files (#99) 2026-02-09 12:21:13 -05:00
conflict.lua fix: pre-release cleanup for v0.2.0 (#102) 2026-02-09 15:08:36 -05:00
debug.lua refactor: standardize log prefixes to [diffs.nvim]: (#183) 2026-03-10 11:12:42 -04:00
diff.lua fix(diff): strip linematch from char-level diff 2026-02-07 00:50:08 -05:00
fugitive.lua fix: pre-release cleanup for v0.2.0 (#102) 2026-02-09 15:08:36 -05:00
git.lua perf: cache repo root and harden async paths (#100) 2026-02-09 12:39:13 -05:00
gitsigns.lua feat: gitsigns blame popup highlighting (#157) 2026-03-06 08:42:02 -05:00
health.lua feat(highlight): add character-level intra-line diff highlighting 2026-02-06 13:53:58 -05:00
highlight.lua fix(highlight): make intra-line bg visible under line backgrounds 2026-03-13 21:13:57 -04:00
init.lua fix(highlight): make intra-line bg visible under line backgrounds 2026-03-13 21:13:57 -04:00
lib.lua refactor: standardize log prefixes to [diffs.nvim]: (#183) 2026-03-10 11:12:42 -04:00
log.lua performance improvements (#116) 2026-02-12 16:59:13 -05:00
merge.lua fix: pre-release cleanup for v0.2.0 (#102) 2026-02-09 15:08:36 -05:00
parser.lua feat(neojj): add neojj (jujutsu) integration (#187) 2026-03-11 14:02:52 -04:00