Skip to content

Commit 8a09961

Browse files
Bump @vue/language-server from 2.1.10 to 2.2.0 in /server (#134)
* Bump @vue/language-server from 2.1.10 to 2.2.0 in /server Bumps [@vue/language-server](https://github.com/vuejs/language-tools/tree/HEAD/packages/language-server) from 2.1.10 to 2.2.0. - [Release notes](https://github.com/vuejs/language-tools/releases) - [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md) - [Commits](https://github.com/vuejs/language-tools/commits/v2.2.0/packages/language-server) --- updated-dependencies: - dependency-name: "@vue/language-server" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * settings --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rafal Chlodnicki <[email protected]>
1 parent bcdb0b9 commit 8a09961

File tree

4 files changed

+323
-336
lines changed

4 files changed

+323
-336
lines changed

LSP-vue.sublime-settings

+15-1
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,29 @@
2323
"vue.complete.casing.props": "autoKebab",
2424
// Auto add `const props = ` before `defineProps` when selecting the completion item `props`, `emit` and `slots`.
2525
"vue.complete.defineAssignment": true,
26-
// Show inlay hints for destructured props.
26+
// Show inlay hints for destructured props:
27+
//
28+
// watch(() => /* props. */foo, () => { ... });
2729
"vue.inlayHints.destructuredProps": false,
2830
// Show inlay hints for missing required props.
31+
//
32+
// <Comp />
33+
// <!-- ^ foo! -->
2934
"vue.inlayHints.missingProps": false,
3035
// Show inlay hints for event argument in inline handlers.
36+
//
37+
// <Comp @foo="/* $event => */console.log($event)" />
3138
"vue.inlayHints.inlineHandlerLeading": false,
3239
// Show inlay hints for component options wrapper for type support.
40+
//
41+
// <script lang="ts">
42+
// export default /* (await import('vue')).defineComponent( */{}/* ) */;
43+
// </script>
3344
"vue.inlayHints.optionsWrapper": false,
3445
// Show inlay hints for v-bind shorthand.
46+
//
47+
// <Comp :foo />
48+
// <!-- ^ =\"foo\" -->
3549
"vue.inlayHints.vBindShorthand": false,
3650
// Whether to have initial indent.
3751
"vue.format.template.initialIndent": true,

0 commit comments

Comments
 (0)