-
-
Notifications
You must be signed in to change notification settings - Fork 531
Expand file tree
/
Copy pathpackage.nls.json
More file actions
29 lines (29 loc) · 2.82 KB
/
package.nls.json
File metadata and controls
29 lines (29 loc) · 2.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"configuration.trace.server": "Traces the communication between VS Code and the language server.",
"configuration.server.path": "Path to the `@vue/language-server` module. If not set, the server will be loaded from the extension's bundled.",
"configuration.server.includeLanguages": "Configure the languages for which the extension should be activated.",
"configuration.codeActions.askNewComponentName": "Ask for new component name when extract component.",
"configuration.hover.rich": "(Experimental) Enable rich hover for Vue components using type information (show props, events, slots, exposed in table format).",
"configuration.suggest.componentNameCasing": "Preferred component name case.",
"configuration.suggest.propNameCasing": "Preferred attr name case.",
"configuration.suggest.defineAssignment": "Auto add `const props = ` before `defineProps` when selecting the completion item `props`. (also `emit` and `slots`)",
"configuration.autoInsert.dotValue": "Auto-complete Ref value with `.value`.",
"configuration.autoInsert.bracketSpacing": "Auto add space between double curly brackets: `{{|}}` -> `{{ | }}`",
"configuration.inlayHints.destructuredProps": "Show inlay hints for destructured props:\n\n```ts\nwatch(() => /* props. */foo, () => { ... });\n```",
"configuration.inlayHints.missingProps": "Show inlay hints for missing required props:\n\n```html\n<Comp />\n<!-- ^ foo! -->\n```",
"configuration.inlayHints.inlineHandlerLeading": "Show inlay hints for event argument in inline handlers:\n\n```html\n<Comp @foo=\"/* $event => */console.log($event)\" />\n```",
"configuration.inlayHints.optionsWrapper": "Show inlay hints for component options wrapper for type support:\n\n```vue\n<script lang=\"ts\">\nexport default /* (await import('vue')).defineComponent( */{}/* ) */;\n</script>\n```",
"configuration.inlayHints.vBindShorthand": "Show inlay hints for v-bind shorthand:\n\n```html\n<Comp :foo />\n <!-- ^ =\"foo\" -->\n```",
"configuration.format.template.initialIndent": "Initial indent for `<template>` block.",
"configuration.format.script.initialIndent": "Initial indent for `<script>` block.",
"configuration.format.style.initialIndent": "Initial indent for `<style>` block.",
"configuration.format.template.enabled": "Enable formatting for `<template>` block.",
"configuration.format.script.enabled": "Enable formatting for `<script>` block.",
"configuration.format.style.enabled": "Enable formatting for `<style>` block.",
"configuration.format.wrapAttributes": "Wrap attributes.",
"configuration.editor.focusMode": "Fade top-level SFC tags.",
"configuration.editor.reactivityVisualization": "Reactivity system visualization.",
"configuration.editor.templateInterpolationDecorators": "Enhanced template interpolation highlighting.",
"command.action.restartServer": "Restart Vue and TS servers",
"command.welcome": "Welcome"
}