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'd argue that this should be fixed in mason-tools-installer, but I've changed it anyway since it probably makes more sense to let it always be a table.
There are other plugins that will break now though, but for those they just need to use a config() function instead. like #208
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.9.0-dev-1834+gf7ad46e69-dirty
Operating system/version
macOS Ventura 13.2
Describe the bug
Setting opts to an empty table results in nil. Some plugins require an empty table to use the default config, e.g. mason-tool-installer.nvim
Currently, you must do
opts = { key = "value" }
or similar for the table to be recognised.Steps To Reproduce
opts = {}
for mason-tool-installer.nvimExpected Behavior
Passing
opts = {}
should result inplugin.setup({})
.Repro
The text was updated successfully, but these errors were encountered: