From c64ba16c7a71e3ea3a7786de3235c8dffc792c50 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Tue, 1 Oct 2019 17:41:28 +0200 Subject: [PATCH] The ASM editor command palette can now be opened with ctrl-shift-p. --- src/quest_editor/gui/AsmEditorView.ts | 4 ++++ 1 file changed, 4 insertions(+) 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 }) => {