-
-
Notifications
You must be signed in to change notification settings - Fork 157
rust-analyzer initializes again when jumping to code outside of current workspace #421
Comments
Yeah i noticed the same, Even when setting the LSP to |
I can't reproduce this with jump-to-definition (using my fork), but it does happen when I'm in a project with multiple subpackages, and I open files from more than one of them. |
So, the solution in my fork was to call This plugin uses Also, support for it in rust-analyzer is fairly recent (since February, see rust-lang/rust-analyzer#14098). |
Thanks for your input.
The behavior I find irritating is therefore not a restart, but a sort of unresponsiveness after this for a short while. It is not really noticeable on small repos, but on large monorepos with tons of packages, it takes a good minute to be operational again, which painful. Disabling I will try with your plugin when I get some time, maybe reducing the number of actors in play by getting rid of lspconfig could help troubleshoot. Thanks anyway for trying to help ❤️ For anyone interested, my current workaround is preventing ra to start whenever a new workspace is to be added and its root contains a path that looks like a dependency if string.find(new_root_dir, ".cargo/") or string.find(new_root_dir, ".rustup/toolchain") then
return nil
end It is not clean and I use a fork of a plugin used for local config to do so (neoconf), but it works on my machine️️ ™️ |
Interesting 🤔. I don't have a second And you say this doesn't happen in VSCode?
This might also work if you set |
Ha! > rust-analyzer --help
# <...>
rust-analyzer diagnostics
ARGS:
<path>
Directory with Cargo.toml.
OPTIONS:
--disable-build-scripts
Don't run build scripts or load `OUT_DIR` values by running `cargo check` before analysis.
--disable-proc-macros
Don't use expand proc macros.
--proc-macro-srv <path>
Run a custom proc-macro-srv binary.
... maybe we're onto something. Update: I have tried server = {
['rust-analyzer'] = {
procMacro = {
enable = false,
},
},
}, to no avail 😞 |
I will try and bisect the exact differences between rust analyzer behavior in vs code and nvim for this and will update if I find anything significant. In the meantime, preventing ra from spawning in dependencies/std has been wroking fine for a few weeks with very few downsides |
Hello,
Whenever I am jumping to definition outside of current workspace, rust-analyzer seems to start a new instance on the jumped file's location, while leaving the current instance hanging until it has started.
This is an issue because rust-analyzer is extremely slow to start on large code bases, and I sometimes lose the LSP for ~1 minute.
It happens when I jump to definition of something in
std
(Default
, orVec
for example), or whenever I jump to a dependency (inside or outside my monorepo workspace)In VSCode, I do not have the issue. I am not sure how to troubleshoot the problem, maybe I am missing some config file ?
Is it possible to have RA run as single file mode for any code that is outside the scope of the initial root directory ?
Or to blacklist some paths (std lib and cargo deps mainly) and prevent them from starting a full steam rust-analyzer ?
The text was updated successfully, but these errors were encountered: