-
-
Notifications
You must be signed in to change notification settings - Fork 223
Add default script language completion #1272
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
Changes from all commits
2289d5f
bb61515
d838214
c1314da
0f081f2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -382,6 +382,16 @@ | |
| "default": true, | ||
| "title": "Svelte: Rename", | ||
| "description": "Enable rename/move Svelte files functionality" | ||
| }, | ||
| "svelte.plugin.svelte.defaultScriptLanguage": { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we put this inside
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm. It is also being used in the code action. if we want to further organize it. Maybe the name needs to be more generic. Maybe something like
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh right, it's also part of the code action. In that case, never mind 😄 My fear is that people would mistake this as something like "if I set this I don't need to write |
||
| "type": "string", | ||
| "default": "none", | ||
| "title": "Svelte: Default Script Language", | ||
| "description": "The default language to use when generating new script tags", | ||
| "enum": [ | ||
| "none", | ||
| "ts" | ||
| ] | ||
| } | ||
| } | ||
| }, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.