We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e4364c commit bd22b62Copy full SHA for bd22b62
lua/modules/configs/completion/mason.lua
@@ -83,7 +83,9 @@ M.setup = function()
83
)
84
end,
85
on_stderr = function(_, msg_stream)
86
- vim.notify(msg_stream, vim.log.levels.ERROR, { title = "[lsp] Install Failure" })
+ if msg_stream then
87
+ vim.notify(msg_stream, vim.log.levels.ERROR, { title = "[lsp] Install Failure" })
88
+ end
89
90
})
91
:start()
0 commit comments