This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
My project include some (local) crates which can't be built on my dev machine. The build.rs will fail as some components are missing in the OS, as expected. How can I have rust-analyzer ignore these instead of getting a bunch of errors I need to escape from? |
Beta Was this translation helpful? Give feedback.
Answered by
simgt
Feb 20, 2023
Replies: 1 comment
-
In case it may help others, this an lsp-config issue and I solved it by adding this to my init script: local notify = vim.notify
vim.notify = function(msg, ...)
if msg:match("[lspconfig]") then
return
end
notify(msg, ...)
end found at https://neovim.discourse.group/t/lsp-disable-autostart-message/1490/9 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
simgt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In case it may help others, this an lsp-config issue and I solved it by adding this to my init script:
found at https://neovim.discourse.group/t/lsp-disable-autostart-message/1490/9