You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have updated the plugin to the latest version before submitting this issue
I have searched the existing issues of noice.nvim
I have searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
0.10.2
Operating system/version
windows11/wsl2-arch
Describe the bug
When typing in LazyVim, the completion popup from nvim-cmp and the LSP hover documentation popup often overlap, especially when certain characters are typed (like <). The completion window (cmp) should take priority over the hover window, but currently, both are shown simultaneously, causing visual clutter and confusion during coding.
Steps To Reproduce
Install and use LazyVim with the default configuration.
Open a TypeScript/JavaScript/React file.
Start typing a JSX tag like <App.
Notice that both the LSP hover popup and the cmp completion popup appear simultaneously, resulting in overlapping windows.
Expected Behavior
The cmp completion window should take precedence over the LSP hover window when a completion is in progress. Ideally, the hover window should either:
Be hidden when the cmp window is active.
Be shown only after a completion selection is made (if the user wants to see hover details for the selected item).
Possibly add an option to delay or suppress the hover popup when the cmp window is active.
Repro
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= {
{ "LazyVim/LazyVim", import="lazyvim.plugins" },
-- add any other plugins here
},
})
The text was updated successfully, but these errors were encountered:
Did you check docs and existing issues?
Neovim version (nvim -v)
0.10.2
Operating system/version
windows11/wsl2-arch
Describe the bug
When typing in LazyVim, the completion popup from nvim-cmp and the LSP hover documentation popup often overlap, especially when certain characters are typed (like <). The completion window (cmp) should take priority over the hover window, but currently, both are shown simultaneously, causing visual clutter and confusion during coding.
Steps To Reproduce
Expected Behavior
The cmp completion window should take precedence over the LSP hover window when a completion is in progress. Ideally, the hover window should either:
Possibly add an option to delay or suppress the hover popup when the cmp window is active.
Repro
The text was updated successfully, but these errors were encountered: