Closed bluss closed 6 months ago
Hi, I just ran across this bug and would rather report it than say nothing.
Plugin version: 656ce9b
With the followng eow configuration, a new inlay is added every time a buffer is entered, so it stacks up and there are more and more color inlays.
eow
(lazy.nvim configuration below)
return { "https://github.com/brenoprata10/nvim-highlight-colors", cmd = "HighlightColors", opts = { render = "virtual", virtual_symbol = "", virtual_symbol_prefix = ' ', virtual_symbol_suffix = ' ', virtual_symbol_position = 'eow', }, keys = { {"<leader>uL", function() require("nvim-highlight-colors").toggle() end, desc = "Highlight Colors (toggle)"}, }, config = function(plugin) require("nvim-highlight-colors").setup(plugin.opts) require("nvim-highlight-colors").turnOff() end }
Could you check again?
thanks. With that it's half fixed. It doesn't increase anymore, but on first toggle, some places have two inlays (one too much) and some have one.
Should be fixed now :)
Hi, I just ran across this bug and would rather report it than say nothing.
Plugin version: 656ce9b
With the followng
eow
configuration, a new inlay is added every time a buffer is entered, so it stacks up and there are more and more color inlays.(lazy.nvim configuration below)