ux - hide quick pickers from command palette (#151489)
parent
10e23028a7
commit
2c0a136079
|
@ -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
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue