bug: Disabled insert mode if few parameters in JavaScript #1033
Closed as not planned
Description
Did you check docs and existing issues?
- I have read all the noice.nvim docs
- 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.3
Operating system/version
macOS 15.2
Describe the bug
When I write multiple arguments in JavaScript, after entering the first argument and adding a comma, pressing space causes a popup to appear. This popup needs to be closed to continue typing the second argument. After entering the second argument, the popup needs to be closed again, and only then can I continue. This process becomes tedious, especially when dealing with multiple arguments (e.g., 2, 3, 4, 5, and more).
I describe it here - NvChad/NvChad#3165
Steps To Reproduce
Open JS and try to make few parameters console.log(canBuy(200, 24, 1499));
Expected Behavior
Insert mod shouldn't be disable.
Repro
-- {
-- "folke/noice.nvim",
-- event = "VeryLazy",
-- opts = {
-- -- add any options here
-- },
-- dependencies = {
-- -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
-- "MunifTanjim/nui.nvim",
-- -- OPTIONAL:
-- -- `nvim-notify` is only needed, if you want to use the notification view.
-- -- If not available, we use `mini` as the fallback
-- "rcarriga/nvim-notify",
-- },
-- },