Skip to content

Commit 0946dce

Browse files
committed
Format keys with backticks
Fixes microsoft#223402
1 parent 9dc000f commit 0946dce

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ export const terminalSuggestConfiguration: IStringDictionary<IConfigurationPrope
5050
},
5151
[TerminalSuggestSettingId.RunOnEnter]: {
5252
restricted: true,
53-
markdownDescription: localize('suggest.runOnEnter', "Controls whether suggestions should run immediately when enter (not tab) is used to accept the result."),
53+
markdownDescription: localize('suggest.runOnEnter', "Controls whether suggestions should run immediately when `Enter` (not `Tab`) is used to accept the result."),
5454
enum: ['never', 'exactMatch', 'exactMatchIgnoreExtension', 'always'],
5555
markdownEnumDescriptions: [
56-
localize('runOnEnter.never', "Never run on enter."),
57-
localize('runOnEnter.exactMatch', "Run on enter when the suggestion is typed in its entirety."),
58-
localize('runOnEnter.exactMatchIgnoreExtension', "Run on enter when the suggestion is typed in its entirety or when a file is typed without its extension included."),
59-
localize('runOnEnter.always', "Always run on enter.")
56+
localize('runOnEnter.never', "Never run on `Enter`."),
57+
localize('runOnEnter.exactMatch', "Run on `Enter` when the suggestion is typed in its entirety."),
58+
localize('runOnEnter.exactMatchIgnoreExtension', "Run on `Enter` when the suggestion is typed in its entirety or when a file is typed without its extension included."),
59+
localize('runOnEnter.always', "Always run on `Enter`.")
6060
],
6161
default: 'exactMatchIgnoreExtension',
6262
},

0 commit comments

Comments
 (0)