From 7b20bd008e5fa5d59d4abd30e9cfef89a301905d Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Tue, 29 Nov 2022 11:00:37 -0800 Subject: [PATCH] Show default string value as code in setting description markdown (#167603) Show default string value as code in setting description From testing #167471 --- src/vs/editor/common/config/editorConfigurationSchema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/common/config/editorConfigurationSchema.ts b/src/vs/editor/common/config/editorConfigurationSchema.ts index b6f8d6ad7fa..1a50a3fa5ed 100644 --- a/src/vs/editor/common/config/editorConfigurationSchema.ts +++ b/src/vs/editor/common/config/editorConfigurationSchema.ts @@ -38,7 +38,7 @@ const editorConfiguration: IConfigurationNode = { } ], default: 'tabSize', - markdownDescription: nls.localize('indentSize', "The number of spaces used for indentation or 'tabSize' to use the value from `#editor.tabSize#`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.") + markdownDescription: nls.localize('indentSize', "The number of spaces used for indentation or `\"tabSize\"` to use the value from `#editor.tabSize#`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.") }, 'editor.insertSpaces': { type: 'boolean',