Implement support for Glint language server v2#7
Draft
mogstad wants to merge 1 commit intojylamont:mainfrom
Draft
Implement support for Glint language server v2#7mogstad wants to merge 1 commit intojylamont:mainfrom
mogstad wants to merge 1 commit intojylamont:mainfrom
Conversation
601b4e8 to
3227367
Compare
Zed just got support for forwarding tsserver messages in the latest
preview. The caveat it only works if the language server is named
`vue-language-server`. I've asked if they are willing to support other
language-servers in the same fasion but I haven't heared back.
The implementation is just Vue's language server, but replaced vue's
packages with Glint's packages.
Requires these settings to be added to the languages in your Zed
settings
```
"Glimmer (TypeScript)": {
"language_servers": ["vtsls", "..."],
"prettier": {
"allowed": true,
"parser": "ember-template-tag",
"plugins": ["prettier-plugin-ember-template-tag"]
}
},
"Glimmer (JavaScript)": {
"language_servers": ["vtsls", "..."],
"prettier": {
"allowed": true,
"parser": "ember-template-tag",
"plugins": ["prettier-plugin-ember-template-tag"]
}
},
```
3227367 to
14a0266
Compare
Contributor
Author
|
Just to verify: You've downloaded and built the extension from this branch? And using Glint v2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.

Zed just got support for forwarding tsserver messages in the latest preview. The caveat it only works if the language server is named
vue-language-server. I've asked if they are willing to support other language-servers in the same fasion but I haven't heard back.The implementation is just Vue's language server, but replaced vue's packages with Glint's packages.
This works, but should probably not be released/merged, leaving it here for ref or for people to try if you really want to try Glint v2 and are not using Vue.