Skip to content

Commit 8014981

Browse files
fix(ui): remove all underline decorations from normal mode
Normal mode now uses ONLY sign bar + boundary markers (╭/╰). No undercurl, underdash, or any line_hl_group on any line. Clean rendering on transparent terminals. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent f879c23 commit 8014981

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

lua/sagefs/cell_highlight.lua

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,6 @@ local function render(buf, start_line, end_line)
148148
}
149149
if line_hl then opts.line_hl_group = line_hl end
150150

151-
-- Normal mode: subtle glow only on boundary lines (first + last)
152-
if style == "normal" and (i == start_line or i == end_line) then
153-
opts.line_hl_group = hl.glow
154-
end
155-
156151
local vt = build_virt_text(style, i, start_line, end_line, cell_lines)
157152
if vt then
158153
opts.virt_text = vt

0 commit comments

Comments
 (0)