mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-22 11:19:32 +00:00
More settings description tuning (#166429)
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
"configuration.markdown.updateLinksOnFileMove.enabled.prompt": "Prompt on each file move.",
|
||||
"configuration.markdown.updateLinksOnFileMove.enabled.always": "Always update links automatically.",
|
||||
"configuration.markdown.updateLinksOnFileMove.enabled.never": "Never try to update link and don't prompt.",
|
||||
"configuration.markdown.updateLinksOnFileMove.include": "Glob patterns that specifies which files that trigger automatic link updates. See `#markdown.updateLinksOnFileMove.enabled#` for details about this feature.",
|
||||
"configuration.markdown.updateLinksOnFileMove.include": "Glob patterns that specifies files that trigger automatic link updates. See `#markdown.updateLinksOnFileMove.enabled#` for details about this feature.",
|
||||
"configuration.markdown.updateLinksOnFileMove.include.property": "The glob pattern to match file paths against. Set to true to enable the pattern.",
|
||||
"configuration.markdown.updateLinksOnFileMove.enableForDirectories": "Enable updating links when a directory is moved or renamed in the workspace.",
|
||||
"configuration.markdown.occurrencesHighlight.enabled": "Enable highlighting link occurrences in the current document.",
|
||||
|
||||
@@ -165,7 +165,7 @@
|
||||
"configuration.tsserver.watchOptions.synchronousWatchDirectory": "Disable deferred watching on directories. Deferred watching is useful when lots of file changes might occur at once (e.g. a change in node_modules from running npm install), but you might want to disable it with this flag for some less-common setups.",
|
||||
"typescript.preferences.renameShorthandProperties.deprecationMessage": "The setting 'typescript.preferences.renameShorthandProperties' has been deprecated in favor of 'typescript.preferences.useAliasesForRenames'",
|
||||
"typescript.preferences.useAliasesForRenames": "Enable/disable introducing aliases for object shorthand properties during renames.",
|
||||
"typescript.workspaceSymbols.scope": "Controls which files are searched by [go to symbol in workspace](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
|
||||
"typescript.workspaceSymbols.scope": "Controls which files are searched by [Go to Symbol in Workspace](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name).",
|
||||
"typescript.workspaceSymbols.scope.allOpenProjects": "Search all open JavaScript or TypeScript projects for symbols.",
|
||||
"typescript.workspaceSymbols.scope.currentProject": "Only search for symbols in the current JavaScript or TypeScript project.",
|
||||
"codeActions.refactor.extract.constant.title": "Extract constant",
|
||||
|
||||
@@ -84,7 +84,7 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration).regis
|
||||
...audioCueFeatureBase,
|
||||
},
|
||||
'audioCues.terminalQuickFix': {
|
||||
'description': localize('audioCues.terminalQuickFix', "Plays a sound when terminal Quick Fixes are available"),
|
||||
'description': localize('audioCues.terminalQuickFix', "Plays a sound when terminal Quick Fixes are available."),
|
||||
...audioCueFeatureBase,
|
||||
},
|
||||
}
|
||||
|
||||
@@ -503,7 +503,7 @@ configurationRegistry.registerConfiguration({
|
||||
},
|
||||
'debug.console.historySuggestions': {
|
||||
type: 'boolean',
|
||||
description: nls.localize('debug.console.historySuggestions', "Controls if the Sebug Console should suggest previously typed input."),
|
||||
description: nls.localize('debug.console.historySuggestions', "Controls if the Debug Console should suggest previously typed input."),
|
||||
default: true
|
||||
},
|
||||
'debug.console.collapseIdenticalLines': {
|
||||
|
||||
@@ -138,7 +138,7 @@ configurationRegistry.registerConfiguration({
|
||||
'properties': {
|
||||
[FILES_EXCLUDE_CONFIG]: {
|
||||
'type': 'object',
|
||||
'markdownDescription': nls.localize('exclude', "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for excluding files and folders. For example, the file explorer decides which files and folders to show or hide based on this setting. Refer to the `#search.exclude#` setting to define search-specific excludes. Refer to the `#explorer.excludeGitIgnore#` setting for ignorings files based on your `.gitignore`."),
|
||||
'markdownDescription': nls.localize('exclude', "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for excluding files and folders. For example, the File Explorer decides which files and folders to show or hide based on this setting. Refer to the `#search.exclude#` setting to define search-specific excludes. Refer to the `#explorer.excludeGitIgnore#` setting for ignorings files based on your `.gitignore`."),
|
||||
'default': {
|
||||
...{ '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true, '**/Thumbs.db': true },
|
||||
...(isWeb ? { '**/*.crswap': true /* filter out swap files used for local file access */ } : undefined)
|
||||
@@ -373,7 +373,7 @@ configurationRegistry.registerConfiguration({
|
||||
},
|
||||
'explorer.autoRevealExclude': {
|
||||
'type': 'object',
|
||||
'markdownDescription': nls.localize('autoRevealExclude', "Configure glob patterns for excluding files and folders from being revealed and selected in the explorer when they are opened. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)."),
|
||||
'markdownDescription': nls.localize('autoRevealExclude', "Configure glob patterns for excluding files and folders from being revealed and selected in the Explorer when they are opened. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)."),
|
||||
'default': { '**/node_modules': true, '**/bower_components': true },
|
||||
'additionalProperties': {
|
||||
'anyOf': [
|
||||
@@ -471,11 +471,11 @@ configurationRegistry.registerConfiguration({
|
||||
'type': 'string',
|
||||
enum: ['simple', 'smart', 'disabled'],
|
||||
enumDescriptions: [
|
||||
nls.localize('simple', "Appends the word \"copy\" at the end of the duplicated name potentially followed by a number"),
|
||||
nls.localize('smart', "Adds a number at the end of the duplicated name. If some number is already part of the name, tries to increase that number"),
|
||||
nls.localize('disabled', "Disables incremental naming. If two files with the same name exist you will be prompted to overwrite the existing file")
|
||||
nls.localize('simple', "Appends the word \"copy\" at the end of the duplicated name potentially followed by a number."),
|
||||
nls.localize('smart', "Adds a number at the end of the duplicated name. If some number is already part of the name, tries to increase that number."),
|
||||
nls.localize('disabled', "Disables incremental naming. If two files with the same name exist you will be prompted to overwrite the existing file.")
|
||||
],
|
||||
description: nls.localize('explorer.incrementalNaming', "Controls what naming strategy to use when a giving a new name to a duplicated explorer item on paste."),
|
||||
description: nls.localize('explorer.incrementalNaming', "Controls what naming strategy to use when a giving a new name to a duplicated Explorer item on paste."),
|
||||
default: 'simple'
|
||||
},
|
||||
'explorer.compactFolders': {
|
||||
|
||||
@@ -171,7 +171,7 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration).regis
|
||||
...editorConfigurationBaseNode,
|
||||
properties: {
|
||||
[DefaultFoldingRangeProvider.configName]: {
|
||||
description: nls.localize('formatter.default', "Defines a default folding range provider which takes precedence over all other folding range provider. Must be the identifier of an extension contributing a folding range provider."),
|
||||
description: nls.localize('formatter.default', "Defines a default folding range provider that takes precedence over all other folding range providers. Must be the identifier of an extension contributing a folding range provider."),
|
||||
type: ['string', 'null'],
|
||||
default: null,
|
||||
enum: DefaultFoldingRangeProvider.extensionIds,
|
||||
|
||||
@@ -900,7 +900,7 @@ configurationRegistry.registerConfiguration({
|
||||
tags: ['notebookLayout']
|
||||
},
|
||||
[NotebookSetting.outputFontSize]: {
|
||||
markdownDescription: nls.localize('notebook.outputFontSize', "Font size for the output text for notebook cells. When set to {0}, {1} is used.", '`0`', '`#editor.fontSize#`'),
|
||||
markdownDescription: nls.localize('notebook.outputFontSize', "Font size for the output text for notebook cells. When set to 0, {0} is used.", '`#editor.fontSize#`'),
|
||||
type: 'number',
|
||||
default: 0,
|
||||
tags: ['notebookLayout']
|
||||
|
||||
@@ -451,8 +451,8 @@ const terminalConfiguration: IConfigurationNode = {
|
||||
type: 'string',
|
||||
enum: ['6', '11'],
|
||||
enumDescriptions: [
|
||||
localize('terminal.integrated.unicodeVersion.six', "Version 6 of Unicode; this is an older version which should work better on older systems."),
|
||||
localize('terminal.integrated.unicodeVersion.eleven', "Version 11 of Unicode; this version provides better support on modern systems that use modern versions of Unicode.")
|
||||
localize('terminal.integrated.unicodeVersion.six', "Version 6 of Unicode. This is an older version which should work better on older systems."),
|
||||
localize('terminal.integrated.unicodeVersion.eleven', "Version 11 of Unicode. This version provides better support on modern systems that use modern versions of Unicode.")
|
||||
],
|
||||
default: '11',
|
||||
description: localize('terminal.integrated.unicodeVersion', "Controls what version of Unicode to use when evaluating the width of characters in the terminal. If you experience emoji or other wide characters not taking up the right amount of space or backspace either deleting too much or too little then you may want to try tweaking this setting.")
|
||||
@@ -516,7 +516,7 @@ const terminalConfiguration: IConfigurationNode = {
|
||||
default: 'onExit'
|
||||
},
|
||||
[TerminalSettingId.CustomGlyphs]: {
|
||||
description: localize('terminal.integrated.customGlyphs', "Whether to draw custom glyphs for block element and box drawing characters instead of using the font, which typically yields better rendering with continuous lines. Note that this doesn't work with the DOM renderer"),
|
||||
description: localize('terminal.integrated.customGlyphs', "Whether to draw custom glyphs for block element and box drawing characters instead of using the font, which typically yields better rendering with continuous lines. Note that this doesn't work with the DOM renderer."),
|
||||
type: 'boolean',
|
||||
default: true
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user