mirror of
https://github.com/norcalli/nvim-colorizer.lua.git
synced 2026-09-10 07:06:14 -04:00
Disable strict index checking.
This commit is contained in:
parent
530b8244ab
commit
8f98c7bb0c
|
|
@ -515,7 +515,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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue