diff --git a/src/quest_editor/gui/AsmEditorView.ts b/src/quest_editor/gui/AsmEditorView.ts index 8e5bfa3d..fa6c641f 100644 --- a/src/quest_editor/gui/AsmEditorView.ts +++ b/src/quest_editor/gui/AsmEditorView.ts @@ -53,6 +53,10 @@ export class AsmEditorView extends ResizableWidget { this.editor.addCommand(KeyMod.CtrlCmd | KeyCode.KEY_Z, () => {}); this.editor.addCommand(KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KEY_Z, () => {}); + const quick_command = this.editor.getAction("editor.action.quickCommand"); + this.editor.addCommand(KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KEY_P, () => { + quick_command.run(); + }); this.disposables( asm_editor_store.did_undo.observe(({ value: source }) => {