Skip to content

Commit ea7b9c3

Browse files
authored
fix(render): disable underline for diagnostics (#1478)
Problem: On current Nvim nightlies, a regression in a `vim.highlight.range()` refactor makes underlines for diagnostics at end of line extend into the next line, leading to visual artifacts in the update view. Solution: Suppress underlines for diagnostics, as they are not wanted anyway.
1 parent 98210e2 commit ea7b9c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/view/render.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function M:update()
8484
diag.lnum = diag.row - 1
8585
return diag
8686
end, self._diagnostics),
87-
{ signs = false, virtual_text = true }
87+
{ signs = false, virtual_text = true, underline = false }
8888
)
8989
end
9090

0 commit comments

Comments
 (0)