-
Notifications
You must be signed in to change notification settings - Fork 1.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
[lsp-server] 🐞 regression: syntax highlighting messed up #3542
Comments
.svelte
files.svelte
files
Update: It's not just Svelte files. Here's a The source code in the images above: import { graphql } from '$graphql';
export const currentUserBasicInfoFragment = graphql(`
fragment currentUserBasicInfo on User {
id
fullName
specialRole
purchasedCourses {
id
}
}
`);
export const courseInCartBasicInfoFragment = graphql(`
fragment courseInCartBasicInfo on Course {
id
}
`);
export const userPositionOnCourseFragment = graphql(`
fragment userPositionOnCourse on UserCoursePosition {
lesson {
number
}
lastUpdatedAt
videoPlaybackTime
}
`);
export const discountFragment = graphql(`
fragment discount on Discount {
__typename
percentage
... on TimeBasedDiscount {
interval
}
}
`); |
.svelte
files
@dschafer thanks for this! we will revert and re-release, add and fix these test cases, and release again when it's working for this bug. Sorry about that! |
ok the fix is released for syntax extension 1.3.4! hopefully we can resolve this before our next attempt |
Is there an existing issue for this?
Current Behavior
Most likely caused by #3518
in v1.3.3:
in v1.3.2:
Expected Behavior
No response
Steps To Reproduce
The example screenshotted above (just make sure you have the Svelte extension + the GraphQL extension installed in VS Code, and then create a
Test.svelte
file, pasting the following content into it):Environment
Anything else?
No response
The text was updated successfully, but these errors were encountered: