-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add `Preferences: LSP-vue Settings` command - enable `templateInterpolationService` in vetur settings and update some - flatten default settings and migrate user's to new structure - fix setting of `tabSize` and `useTabs` (didn't work previously)
- Loading branch information
Showing
10 changed files
with
158 additions
and
195 deletions.
There are no files selected for viewing
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[ | ||
{ | ||
"caption": "Preferences: LSP-vue Settings", | ||
"command": "edit_settings", | ||
"args": { | ||
"base_file": "${packages}/LSP-vue/LSP-vue.sublime-settings", | ||
"default": "// Settings in here override those in \"LSP-vue/LSP-vue.sublime-settings\",\n\n{\n\t$0\n}\n" | ||
} | ||
}, | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,55 @@ | ||
{ | ||
"client" : { | ||
"enabled": true, | ||
"languages": [ | ||
{ | ||
"languageId": "vue", | ||
"scopes": ["text.html.vue"], | ||
"syntaxes": ["Packages/Vue Syntax Highlight/Vue Component.sublime-syntax"] | ||
} | ||
], | ||
"initializationOptions": { | ||
"config": { | ||
"vetur": { | ||
"completion": { | ||
"autoImport": false, | ||
"tagCasing": "kebab", | ||
"useScaffoldSnippets": false | ||
"languages": [ | ||
{ | ||
"languageId": "vue", | ||
"scopes": ["text.html.vue"], | ||
"syntaxes": ["Packages/Vue Syntax Highlight/Vue Component.sublime-syntax"], | ||
} | ||
], | ||
"initializationOptions": { | ||
"config": { | ||
"vetur": { | ||
"completion": { | ||
"autoImport": false, | ||
"tagCasing": "kebab", | ||
"useScaffoldSnippets": false, | ||
}, | ||
"experimental": { | ||
"templateInterpolationService": true, | ||
}, | ||
"format": { | ||
"enable": true, | ||
"defaultFormatter": { | ||
"js": "none", | ||
"ts": "none", | ||
}, | ||
"format": { | ||
"defaultFormatter": { | ||
"js": "none", | ||
"ts": "none" | ||
}, | ||
"defaultFormatterOptions": {}, | ||
"scriptInitialIndent": false, | ||
"styleInitialIndent": false, | ||
"options": {} | ||
"defaultFormatterOptions": {}, | ||
"scriptInitialIndent": false, | ||
"styleInitialIndent": false, | ||
"options": { | ||
// tabSize and useTabs will be automatically inferred from the workspace | ||
}, | ||
"useWorkspaceDependencies": false, | ||
"validation": { | ||
"script": true, | ||
"style": true, | ||
"template": true | ||
} | ||
}, | ||
"css": {}, | ||
"emmet": {}, | ||
"stylusSupremacy": {}, | ||
"html": { | ||
"suggest": {} | ||
}, | ||
"javascript": { | ||
"format": {} | ||
"useWorkspaceDependencies": false, | ||
"validation": { | ||
"script": true, | ||
"style": true, | ||
"template": true, | ||
}, | ||
"typescript": { | ||
"format": {} | ||
} | ||
}, | ||
"css": {}, | ||
"emmet": {}, | ||
"stylusSupremacy": {}, | ||
"html": { | ||
"suggest": {}, | ||
}, | ||
"javascript": { | ||
"format": {}, | ||
}, | ||
"typescript": { | ||
"format": {}, | ||
} | ||
}, | ||
"settings": {} | ||
} | ||
} | ||
}, | ||
"settings": {} | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"*": { | ||
"*": [ | ||
"lsp_utils", | ||
"sublime_lib" | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "vue-language-server", | ||
"version": "0.0.67", | ||
"dependencies": { | ||
"vue-language-server": "0.0.67" | ||
} | ||
} |
Oops, something went wrong.