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
Describe the bug
When I boot neovim, I am usually presented with the following error
Which version of Neovim are you using?
NVIM v0.9.0-dev-305+g9d7dc5062
Build type: RelWithDebInfo
LuaJIT 2.1.0-beta3
Compilation: /Applications/Xcode_13.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNVIM_TS_HAS_SET_MATCH_LIMIT -DNVIM_TS_HAS_SET_ALLOCATOR -O2 -g -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wshadow -Wconversion -Wdouble-promotion -Wmissing-noreturn -Wmissing-format-attribute -Wmissing-prototypes -Wimplicit-fallthrough -Wvla -fstack-protector-strong -fno-common -fdiagnostics-color=always -DINCLUDE_GENERATED_DECLARATIONS -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -DMIN_LOG_LEVEL=3 -I/Users/runner/work/neovim/neovim/build/cmake.config -I/Users/runner/work/neovim/neovim/src -I/Users/runner/work/neovim/neovim/.deps/usr/include -I/Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.1.sdk/usr/include -I/Library/Frameworks/Mono.framework/Headers -I/Users/runner/work/neovim/neovim/build/src/nvim/auto -I/Users/runner/work/neovim/neovim/build/include
Compiled by [email protected]
Features: +acl +iconv +tui
See ":help feature-compile"
system vimrc file: "$VIM/sysinit.vim"
fall-back for $VIM: "/share/nvim"
Run :checkhealth for more info
To Reproduce
Steps to reproduce the behavior:
nvim .
open a file (I opened an elixir file, which may mean that LSP stuff is related)
see error
Expected Behavior
I would expect no error
Noice Log
Please include any related errors from the Noice log file. (open with :Noice log)
Noice log
Sun Nov 13 20:09:40 2022
...e/pack/packer/start/noice.nvim/lua/noice/lsp/message.lua:30: attempt to index field 'kinds' (a nil value)
stack traceback:
[C]: in function 'pcall'
...ite/pack/packer/start/noice.nvim/lua/noice/util/call.lua:144: in function '__index'
...e/pack/packer/start/noice.nvim/lua/noice/lsp/message.lua:30: in function <...e/pack/packer/start/noice.nvim/lua/noice/lsp/message.lua:24>
[C]: in function 'xpcall'
...ite/pack/packer/start/noice.nvim/lua/noice/util/call.lua:149: in function 'handler'
...stalls/neovim/nightly/share/nvim/runtime/lua/vim/lsp.lua:1054: in function ''
vim/_editor.lua: in function <vim/_editor.lua:0>
Config
I have the following in config/nvim/plugin/noice.lua
require("noice").setup {
cmdline= {
enabled=true, -- disable if you use native command line UIview="cmdline_popup", -- view for rendering the cmdline. Change to `cmdline` to get a classic cmdline at the bottomopts= { buf_options= { filetype="vim" } }, -- enable syntax highlighting in the cmdlineicons= {
["/"] = { icon=" " },
["?"] = { icon=" " },
[":"] = { icon=":", firstc=false },
},
},
views= {
cmdline_popup= {
position= {
row=1,
col="50%",
},
},
},
routes= {
{
filter= {
event="msg_show",
kind="search_count",
},
opts= { skip=true },
},
{
filter= {
event="msg_show",
kind="",
find="written",
},
opts= { skip=true },
},
},
}
The text was updated successfully, but these errors were encountered:
Describe the bug
When I boot neovim, I am usually presented with the following error
Which version of Neovim are you using?
To Reproduce
Steps to reproduce the behavior:
Expected Behavior
I would expect no error
Noice Log
Please include any related errors from the Noice log file. (open with
:Noice log
)Noice log
Config
I have the following in
config/nvim/plugin/noice.lua
The text was updated successfully, but these errors were encountered: