-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Request textDocument/hover from all configured language servers #8985
Labels
A-helix-term
Area: Helix term improvements
A-language-server
Area: Language server client
C-enhancement
Category: Improvements
Comments
kirawi
added
C-enhancement
Category: Improvements
A-language-server
Area: Language server client
A-helix-term
Area: Helix term improvements
E-good-first-issue
Call for participation: Issues suitable for new contributors
and removed
E-good-first-issue
Call for participation: Issues suitable for new contributors
labels
Dec 8, 2023
helix/helix-term/src/commands/lsp.rs Lines 1279 to 1328 in 5109286
|
This was referenced Jan 11, 2025
the-mikedavis
changed the title
Show onHover docs of multiple LSPs
Request textDocument/hover from all configured language servers
Jan 11, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-helix-term
Area: Helix term improvements
A-language-server
Area: Language server client
C-enhancement
Category: Improvements
I couldn't find if this is an issue with the event system (#8021), and can't seem to find a similar issue.
onHover
docs doesn't work well with multiple LSPs. For example, I've got both["tailwind", "elixir"]
configured.If I hover on something from elixir, I don't get any docs. If I remove the tailwind lsp, I do get docs for elixir, but of course none for the tailwind classes.
If I reverse the order, hover on
elixir
works but not ontailwind
.So the issue is that hover should work for both configured lsps.
Discussed in #8872
The text was updated successfully, but these errors were encountered: