mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Revert "added the key bindings for first and last selection in suggestions."
as per user feedback in #43511
This reverts commit be5030b70c.
This commit is contained in:
@@ -406,12 +406,7 @@ registerEditorCommand(new SuggestCommand({
|
||||
registerEditorCommand(new SuggestCommand({
|
||||
id: 'selectLastSuggestion',
|
||||
precondition: ContextKeyExpr.and(SuggestContext.Visible, SuggestContext.MultipleSuggestions),
|
||||
handler: c => c.selectLastSuggestion(),
|
||||
kbOpts: {
|
||||
weight: weight,
|
||||
kbExpr: EditorContextKeys.textInputFocus,
|
||||
primary: KeyCode.End
|
||||
}
|
||||
handler: c => c.selectLastSuggestion()
|
||||
}));
|
||||
|
||||
registerEditorCommand(new SuggestCommand({
|
||||
@@ -442,12 +437,7 @@ registerEditorCommand(new SuggestCommand({
|
||||
registerEditorCommand(new SuggestCommand({
|
||||
id: 'selectFirstSuggestion',
|
||||
precondition: ContextKeyExpr.and(SuggestContext.Visible, SuggestContext.MultipleSuggestions),
|
||||
handler: c => c.selectFirstSuggestion(),
|
||||
kbOpts: {
|
||||
weight: weight,
|
||||
kbExpr: EditorContextKeys.textInputFocus,
|
||||
primary: KeyCode.Home
|
||||
}
|
||||
handler: c => c.selectFirstSuggestion()
|
||||
}));
|
||||
|
||||
registerEditorCommand(new SuggestCommand({
|
||||
|
||||
Reference in New Issue
Block a user