Skip to content

Commit 3fe16b2

Browse files
authored
Merge pull request microsoft#253262 from microsoft/tyriar/253184
Polish selectionMode descriptions
2 parents 4b9018c + b0a8aa1 commit 3fe16b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ export const terminalSuggestConfiguration: IStringDictionary<IConfigurationPrope
135135
markdownDescription: localize('terminal.integrated.selectionMode', "Controls how suggestion selection works in the integrated terminal."),
136136
type: 'string',
137137
enum: ['partial', 'always', 'never'],
138-
enumDescriptions: [
139-
localize('terminal.integrated.selectionMode.partial', "Will show a border and only insert the suggestion via Tab until navigation has occurred. After that, it will show selection and insert via Enter or Tab."),
140-
localize('terminal.integrated.selectionMode.always', "Always select."),
141-
localize('terminal.integrated.selectionMode.never', "No selection will occur until the user explicitly navigates the suggestions."),
138+
markdownEnumDescriptions: [
139+
localize('terminal.integrated.selectionMode.partial', "Partially select a suggestion when automatically triggering IntelliSense. `Tab` can be used to accept the first suggestion, only after navigating the suggestions via `Down` will `Enter` also accept the active suggestion."),
140+
localize('terminal.integrated.selectionMode.always', "Always select a suggestion when automatically triggering IntelliSense. `Enter` or `Tab` can be used to accept the first suggestion."),
141+
localize('terminal.integrated.selectionMode.never', "Never select a suggestion when automatically triggering IntelliSense. The list must be navigated via `Down` before `Enter` or `Tab` can be used to accept the active suggestion."),
142142
],
143143
default: 'partial',
144144
tags: ['preview']

0 commit comments

Comments
 (0)