We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
.svelte
Currently completing named imports in *.svelte files will add malformed code.
*.svelte
In the script of a *.svelte file begin to type a named import:
import { X }
Then tab to complete the import.
Notice that the import is malformed:
import { X } from 'y';} // <- extra }
https://github.com/ieedan/svelte-import-issue-repro
Completed import should read:
import { X } from 'y';
svelte-language-server
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Currently completing named imports in
*.svelte
files will add malformed code.Reproduction
In the script of a
*.svelte
file begin to type a named import:Then tab to complete the import.
Notice that the import is malformed:
https://github.com/ieedan/svelte-import-issue-repro
Expected behaviour
Completed import should read:
System Info
Which package is the issue about?
svelte-language-server
Additional Information, eg. Screenshots
No response
The text was updated successfully, but these errors were encountered: