aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/colorizer.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/colorizer.lua b/lua/colorizer.lua
index 7fdd206..e47e079 100644
--- a/lua/colorizer.lua
+++ b/lua/colorizer.lua
@@ -525,7 +525,7 @@ local function attach_to_buffer(buf, options)
return true
end
nvim_buf_clear_namespace(buf, ns, firstline, new_lastline)
- local lines = nvim_buf_get_lines(buf, firstline, new_lastline, true)
+ local lines = nvim_buf_get_lines(buf, firstline, new_lastline, false)
highlight_buffer(buf, ns, lines, firstline, BUFFER_OPTIONS[buf])
end;
on_detach = function()