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 searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
NVIM v0.9.0 Release
Operating system/version
MacOS 13.3.1
Describe the bug
In some cases, the latest version of Noice will give an error when showing the signature help.
The error message is shown below.
...l/share/nvim/lazy/noice.nvim/lua/noice/lsp/signature.lua:221: attempt to concatenate field 'label' (a table value)
Here is a video to show this issue. And there is no problem with this commit at 1da4edf.
noice.signature.bug.mov
Steps To Reproduce
...
Expected Behavior
...
Repro
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
"folke/noice.nvim",
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.9.0 Release
Operating system/version
MacOS 13.3.1
Describe the bug
In some cases, the latest version of Noice will give an error when showing the signature help.
The error message is shown below.
Here is a video to show this issue. And there is no problem with this commit at
1da4edf.noice.signature.bug.mov
Steps To Reproduce
...
Expected Behavior
...
Repro