bug: noice.nvim cursor conflicts with smoka7/hop.nvim cursor causing graphical issue #566
Closed
3 tasks done
Labels
bug
Something isn't working
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.9.1
Operating system/version
Ubuntu 23.04
Describe the bug
The issue only appears when
noice.nvim
is installed. When on a blank line and youcall
hop
, the cursor goes black.Here is what I mean:
Call hop with noice.nvim
Calling hop without noice.nvim
Steps To Reproduce
Expected Behavior
-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repr
for , name in ipairs({ "config", "data", "state", "cache" }) do
vim.env[("XDG%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/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", lazypath })
end
vim.opt.runtimepath:prepend(lazypath)
-- install plugins
local plugins = {
{ "folke/noice.nvim", dependencies = { "MunifTanjim/nui.nvim" }, opts = {} },
{ "smoka7/hop.nvim", opts = {} },
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
})
Repro
The text was updated successfully, but these errors were encountered: