-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flickering background in Quarto cells #75
Comments
I cannot reproduce this. Can you use this template and steps to cause the issue? local lazypath = "/tmp/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system { "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath }
end
vim.opt.rtp:prepend(lazypath)
vim.opt.termguicolors = true
require("lazy").setup ({
{
"lukas-reineke/headlines.nvim",
config = function()
require("headlines").setup {}
end,
},
}, { root = "/tmp/lazy" }) |
@lukas-reineke |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I love the plugin, it makes a pleasure to work with Quarto files (I use it mainly for data science at work). I have an annoying issue where the cells background is unset in random amount of lines when another highlight is on, or that is what my debugging got me to. See below an example of the type of flickering I get:
normal highlight
broken by Illuminate (see the two
lemur_residuals
)These are actually very sudden and I am not sure what they are related to (cursor is on a white space, maybe the IndentBlankline plugin?):
All this flickers constantly while moving the cursor around but I can't figure out why exactly. My guess is that happens when something else sets a background inside the cell? Disabling VimIlluminate for example solves that specific type of flickering.
Changing colorscheme to a default one does not help.
My headlines.nvim config:
The code in the pictures:
Do you have an idea on what is going on?
The text was updated successfully, but these errors were encountered: