Shorter description for configuration items.

This commit is contained in:
CismonX 2021-04-04 03:23:10 +08:00
parent f15f987b09
commit ea6532afd4
Signed by: cismonx
GPG Key ID: 3094873E29A482FB
1 changed files with 13 additions and 13 deletions

View File

@ -143,65 +143,65 @@
"texinfo.makeinfo": { "texinfo.makeinfo": {
"type": "string", "type": "string",
"default": "makeinfo", "default": "makeinfo",
"markdownDescription": "Path to the `makeinfo` (or `texi2any`) command. If not located in `$PATH`, an absolute path should be specified.\n\nThe value should not contain any command-line arguments, just the filename." "description": "Path to the `makeinfo` (or `texi2any`) command."
}, },
"texinfo.enableCodeLens": { "texinfo.enableCodeLens": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"markdownDescription": "Enable code lens on node identifiers which jumps to the corresponding nodes in preview." "description": "Enable code lens on node identifiers which jumps to the corresponding nodes in preview."
}, },
"texinfo.completion.enableSnippets": { "texinfo.completion.enableSnippets": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"markdownDescription": "Show snippets in code completion items.\n\nIf disabled, only commands are shown." "description": "Show snippets in code completion items."
}, },
"texinfo.completion.hideSnippetCommands": { "texinfo.completion.hideSnippetCommands": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"markdownDescription": "When snippet is enabled, hide the snippets' corresponding commands from completion items." "description": "When snippet is enabled, hide the snippets' corresponding commands from completion items."
}, },
"texinfo.preview.noHeaders": { "texinfo.preview.noHeaders": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"markdownDescription": "Suppress node separators in preview.\n\nThis corresponds to the `--no-headers` option of `makeinfo`." "description": "Suppress node separators in preview."
}, },
"texinfo.preview.maxSize": { "texinfo.preview.maxSize": {
"type": "integer", "type": "integer",
"default": "2", "default": 2,
"minimum": 1, "minimum": 1,
"maximum": 16, "maximum": 16,
"markdownDescription": "Max allowed size (in MiB) for the preview document." "description": "Max allowed size (in MiB) for the preview document."
}, },
"texinfo.preview.errorLimit": { "texinfo.preview.errorLimit": {
"type": "integer", "type": "integer",
"default": 100, "default": 100,
"minimum": 0, "minimum": 0,
"markdownDescription": "Max number of errors before quit when trying to display preview.\n\nThis corresponds to the `--error-limit=NUM` option of `makeinfo`." "description": "Max number of errors before quit when trying to display preview."
}, },
"texinfo.preview.force": { "texinfo.preview.force": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"markdownDescription": "Preserve preview even if errors.\n\nThis corresponds to the `--force` option of `makeinfo`." "description": "Preserve preview even if errors."
}, },
"texinfo.preview.noValidation": { "texinfo.preview.noValidation": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"markdownDescription": "Supress node cross-reference validation.\n\nThis corresponds to the `--no-validate` option of `makeinfo`." "description": "Supress node cross-reference validation."
}, },
"texinfo.preview.noWarnings": { "texinfo.preview.noWarnings": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"markdownDescription": "Suppress warnings.\n\nThis corresponds to the `--no-warn` option of `makeinfo`." "description": "Suppress warnings."
}, },
"texinfo.preview.displayImage": { "texinfo.preview.displayImage": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"markdownDescription": "Display images in in preview.\n\nIf image display is not needed, turn off this option to improve preview performance." "description": "Display images in in preview."
}, },
"texinfo.preview.customCSS": { "texinfo.preview.customCSS": {
"type": "string", "type": "string",
"default": "", "default": "",
"markdownDescription": "URI of custom CSS for preview.\n\nA good example is https://www.gnu.org/software/gnulib/manual.css" "description": "URI of custom CSS for preview."
} }
} }
}, },