Skip to content

Commit 135d988

Browse files
committed
Fix microsoft#57389 - enumDescriptions missing markdown indication
1 parent 4fab251 commit 135d988

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/editor/common/config/commonEditorConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ const editorConfiguration: IConfigurationNode = {
560560
'type': 'string',
561561
'enum': ['on', 'smart', 'off'],
562562
'default': EDITOR_DEFAULTS.contribInfo.acceptSuggestionOnEnter,
563-
'enumDescriptions': [
563+
'markdownEnumDescriptions': [
564564
'',
565565
nls.localize('acceptSuggestionOnEnterSmart', "Only accept a suggestion with `Enter` when it makes a textual change."),
566566
''
@@ -597,7 +597,7 @@ const editorConfiguration: IConfigurationNode = {
597597
'editor.suggestSelection': {
598598
'type': 'string',
599599
'enum': ['first', 'recentlyUsed', 'recentlyUsedByPrefix'],
600-
'enumDescriptions': [
600+
'markdownEnumDescriptions': [
601601
nls.localize('suggestSelection.first', "Always select the first suggestion."),
602602
nls.localize('suggestSelection.recentlyUsed', "Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently."),
603603
nls.localize('suggestSelection.recentlyUsedByPrefix', "Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`."),

0 commit comments

Comments
 (0)