ux - hide quick pickers from command palette (#151489)

pull/151500/head
Benjamin Pasero 2022-06-08 09:24:49 +02:00 committed by GitHub
parent 10e23028a7
commit 2c0a136079
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -270,7 +270,7 @@ class QuickPickRecentAction extends BaseOpenRecentAction {
id: 'workbench.action.quickOpenRecent',
title: { value: localize('quickOpenRecent', "Quick Open Recent..."), original: 'Quick Open Recent...' },
category: fileCategory,
f1: true
f1: false // hide quick pickers from command palette to not confuse with the other entry that shows a input field
});
}

View File

@ -240,7 +240,7 @@ export class QuickAccessViewPickerAction extends Action2 {
id: QuickAccessViewPickerAction.ID,
title: { value: localize('quickOpenView', "Quick Open View"), original: 'Quick Open View' },
category: CATEGORIES.View,
f1: true,
f1: false, // hide quick pickers from command palette to not confuse with the other entry that shows a input field
keybinding: {
weight: KeybindingWeight.WorkbenchContrib,
when: undefined,

View File

@ -266,7 +266,7 @@ export class QuickSwitchWindowAction extends BaseSwitchWindow {
super({
id: 'workbench.action.quickSwitchWindow',
title: { value: localize('quickSwitchWindow', "Quick Switch Window..."), original: 'Quick Switch Window...' },
f1: true
f1: false // hide quick pickers from command palette to not confuse with the other entry that shows a input field
});
}