fix(lsp/windows): path normalisation preventing lsp to work after gd to std lib #285
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue
Lsp does not work in a simple cargo project when you jump into standard library multiple times by using
gd
(go to definition). Basically, rustaceanvim is not able to identify the buffer path as being inside the standard library, therefore, it launches a new instance of rust-analyzer. This happens because the path of rustup home toolchains is likeC:\path\to\rustup-home/.toolchains
while the buffer path isc:\path\to\rustup-home\.toolchains\to\std\lib
.Solution
Substitute all patterns
/+
with\
and also useos.normalize_path_on_windows
due to lowercase partition drive letter.I also thought of modifying the joinpath function in
compat.lua
, but it won't work with neovim 0.10.Settings
OS: Windows
Neovim: 0.9.5
Neovim config: custom LazyVim with default rustaceanvim config