remove print

This commit is contained in:
Jonathan Apodaca 2024-10-12 00:00:06 -06:00
parent c2ba91893f
commit e45d51cdf5

View File

@ -435,7 +435,6 @@ function Range:highlight(group, opts)
vim.cmd.redraw() vim.cmd.redraw()
local function clear() local function clear()
vim.print 'clearing highlight...'
vim.api.nvim_buf_clear_namespace(self.start.buf, ns, self.start.lnum, self.stop.lnum + 1) vim.api.nvim_buf_clear_namespace(self.start.buf, ns, self.start.lnum, self.stop.lnum + 1)
end end
if opts.timeout ~= nil then vim.defer_fn(clear, opts.timeout) end if opts.timeout ~= nil then vim.defer_fn(clear, opts.timeout) end