The ASM editor command palette can now be opened with ctrl-shift-p.

This commit is contained in:
Daan Vanden Bosch 2019-10-01 17:41:28 +02:00
parent 75c19cf112
commit c64ba16c7a

View File

@ -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 }) => {