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
{{ message }}
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Lots of languages store dependency sources outside of project directories. E.g. Rust/cargo stores them at something like `~/.cargo/registry/repo123/some-crate-1.0.0/src/.
As far as RLS is concerned it's able to provide hover, definition, documentHighlight etc functionality for these dependencies sources. However, atom-languageclient currently can't tell these have a relation to the project so don't send the server any requests.
To me it seems feasible that we record the uris returned by textDocument/definition responses, associated with the server that sent them. If these files are open, and not in any other project we consider them eligible as project files in this language server.