-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Force Vue and Svelte language servers to be the first in the list for their languages #16654
Conversation
… their languages. This way, those are considered "primary" and serve all LSP requests like go to definition. Before, Tailwind language server was first and returned nothing for all LSP requests.
/cherry-pick v0.149.x |
/cherry-pick v0.150.x |
… their languages (#16654) Follow-up of #15624 Fixes #13769 Fixes #16469 This way, those are considered "primary" and serve all LSP requests like go to definition. Before, Tailwind language server was first and returned nothing for all LSP requests. - Fixed Vue and Svelte languages integrations not handling LSP requests properly ([#13769](#13769)) ([#16469](#16469))
… their languages (#16654) Follow-up of #15624 Fixes #13769 Fixes #16469 This way, those are considered "primary" and serve all LSP requests like go to definition. Before, Tailwind language server was first and returned nothing for all LSP requests. - Fixed Vue and Svelte languages integrations not handling LSP requests properly ([#13769](#13769)) ([#16469](#16469))
/cherry-pick v0.149.x |
… their languages (#16654) Follow-up of #15624 Fixes #13769 Fixes #16469 This way, those are considered "primary" and serve all LSP requests like go to definition. Before, Tailwind language server was first and returned nothing for all LSP requests. - Fixed Vue and Svelte languages integrations not handling LSP requests properly ([#13769](#13769)) ([#16469](#16469))
/cherry-pick v0.150.x |
… their languages (#16654) Follow-up of #15624 Fixes #13769 Fixes #16469 This way, those are considered "primary" and serve all LSP requests like go to definition. Before, Tailwind language server was first and returned nothing for all LSP requests. - Fixed Vue and Svelte languages integrations not handling LSP requests properly ([#13769](#13769)) ([#16469](#16469))
Astro has the same problem and this workaround also fixes it. "languages": {
"Astro": {
"language_servers": ["astro-language-server", "..."],
"prettier": {
"allowed": true
}
}
} |
To note, the default Zed settings also use |
Thanks @SomeoneToIgnore , I'll try adding |
Follow-up of #15624
Fixes #13769
Fixes #16469
This way, those are considered "primary" and serve all LSP requests like go to definition. Before, Tailwind language server was first and returned nothing for all LSP requests.