aboutsummaryrefslogtreecommitdiff
path: root/lua/colorizer
diff options
context:
space:
mode:
Diffstat (limited to 'lua/colorizer')
-rw-r--r--lua/colorizer/buffer_utils.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/colorizer/buffer_utils.lua b/lua/colorizer/buffer_utils.lua
index a3b3da7..4ee3cfe 100644
--- a/lua/colorizer/buffer_utils.lua
+++ b/lua/colorizer/buffer_utils.lua
@@ -140,7 +140,7 @@ local function highlight_buffer_tailwind(buf, ns, mode, options)
table.insert(d, { name = name, range = { first_col, end_col } })
datas[cur_line] = d
end
- add_highlight(options, buf, ns, datas, line_start, line_end + 2)
+ add_highlight(options, buf, ns, datas, line_start or 0, line_end and (line_end + 2) or -1)
end
end)
end, 10)