We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e29b7b5 commit 1dd1d30Copy full SHA for 1dd1d30
ftplugin/markdown.lua
@@ -26,9 +26,9 @@ if vim.islist(markview.configuration.buf_ignore) and vim.list_contains(markview.
26
end
27
28
-- Don't add hls unless absolutely necessary
29
-if not markview.added_hls and vim.islist(markview.configuration.highlight_groups) then
+if not markview.set_hl_complete and vim.islist(markview.configuration.highlight_groups) then
30
markview.add_hls(markview.configuration.highlight_groups)
31
- markview.added_hls = true;
+ markview.set_hl_complete = true;
32
33
34
local markview_augroup = vim.api.nvim_create_augroup("markview_buf_" .. vim.api.nvim_get_current_buf(), { clear = true });
0 commit comments