@@ -82,30 +82,32 @@ function Text:render(buf)
82
82
vim .api .nvim_buf_clear_namespace (buf , Config .ns , 0 , - 1 )
83
83
84
84
for l , line in ipairs (self ._lines ) do
85
- local col = self .padding
86
-
87
- for _ , segment in ipairs (line ) do
88
- local width = vim .fn .strlen (segment .str )
89
-
90
- local extmark = segment .hl
91
- if extmark and width > 0 then
92
- if type (extmark ) == " string" then
93
- extmark = { hl_group = extmark , end_col = col + width }
85
+ if lines [l ] ~= " " then
86
+ local col = self .padding
87
+
88
+ for _ , segment in ipairs (line ) do
89
+ local width = vim .fn .strlen (segment .str )
90
+
91
+ local extmark = segment .hl
92
+ if extmark then
93
+ if type (extmark ) == " string" then
94
+ extmark = { hl_group = extmark , end_col = col + width }
95
+ end
96
+ --- @cast extmark Extmark
97
+
98
+ local extmark_col = extmark .col or col
99
+ extmark .col = nil
100
+ local ok = pcall (vim .api .nvim_buf_set_extmark , buf , Config .ns , l - 1 , extmark_col , extmark )
101
+ if not ok then
102
+ Util .error (
103
+ " Failed to set extmark. Please report a bug with this info:\n "
104
+ .. vim .inspect ({ segment = segment , line = line })
105
+ )
106
+ end
94
107
end
95
- --- @cast extmark Extmark
96
-
97
- local extmark_col = extmark .col or col
98
- extmark .col = nil
99
- local ok = pcall (vim .api .nvim_buf_set_extmark , buf , Config .ns , l - 1 , extmark_col , extmark )
100
- if not ok then
101
- Util .error (
102
- " Failed to set extmark. Please report a bug with this info:\n "
103
- .. vim .inspect ({ segment = segment , line = line })
104
- )
105
- end
106
- end
107
108
108
- col = col + width
109
+ col = col + width
110
+ end
109
111
end
110
112
end
111
113
end
0 commit comments