-
Notifications
You must be signed in to change notification settings - Fork 283
Closed
Labels
Description
Contributing guidelines
- I have read CONTRIBUTING.md
- I have read CODE_OF_CONDUCT.md
- I have updated 'mini.nvim' to latest version
Module(s)
mini.hues
Description
cursorline in mini.hues is not highlighted properly in few lines in mini.hues.
In some places it looks normal like below

While in others it does not show properly

Neovim version
nightly latest
Steps to reproduce
vim.env.LAZY_STDPATH = ".repro"
load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))()
require("lazy.minit").repro({
spec = {
-- add any other plugins here
"nvim-treesitter/nvim-treesitter",
"echasnovski/mini.hues",
},
})
require("nvim-treesitter.configs").setup({
ensure_installed = { "svelte", "bash" },
highlight = {
enable = true,
},
})
vim.cmd("set cursorline")
vim.cmd.colorscheme("default")
vim.cmd.colorscheme("randomhue")With the above config open the file below with name *.svelte
<script>
import Accordion from '$lib/components/page/Accordion.svelte';
export let name = '';
export let url = '';
export let badges = [];
export let description = '';
</script>
{#if name && description}
<Accordion {name} {url}>
<div class="center">
{#each badges as badge}
<span class="badge">{badge}</span>
{/each}
<div class="center">
{description}
</div>
</div>
</Accordion>
{/if}
<style>
div.center {
margin-top: 1em;
}
</style>Expected behavior
Cursorline should look uniform across all lines.
Actual behavior
Cursorline is not uniform across all lines.