Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: duplicate command palette in editor context menu #243

Merged
merged 1 commit into from
Jul 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/model/keybinding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ export interface ISimpleKeybinding {

export const ACTION_QUICK_ACCESS_SETTINGS =
'workbench.action.quickAccessSettings';
export const ACTION_QUICK_COMMAND = 'workbench.action.quickCommand';
export const ACTION_QUICK_COMMAND = 'editor.action.quickCommand';
export const ACTION_SELECT_THEME = 'workbench.action.selectTheme';
export const ACTION_SELECT_LOCALE = 'workbench.action.selectLocale';
5 changes: 0 additions & 5 deletions src/monaco/quickAccessViewAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,6 @@ export class CommandQuickAccessViewAction extends Action2 {
primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KEY_P,
secondary: [KeyCode.F1],
},
menu: {
id: MenuId.EditorContext,
group: 'z_commands',
order: 1,
},
});
}

Expand Down