Skip to content

Commit

Permalink
Show default string value as code in setting description markdown (#1…
Browse files Browse the repository at this point in the history
…67603)

Show default string value as code in setting description

From testing #167471
  • Loading branch information
mjbvz authored Nov 29, 2022
1 parent 510f840 commit 7b20bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/editor/common/config/editorConfigurationSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 7b20bd0

Please sign in to comment.