mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
The ASM editor command palette can now be opened with ctrl-shift-p.
This commit is contained in:
parent
75c19cf112
commit
c64ba16c7a
@ -53,6 +53,10 @@ export class AsmEditorView extends ResizableWidget {
|
|||||||
|
|
||||||
this.editor.addCommand(KeyMod.CtrlCmd | KeyCode.KEY_Z, () => {});
|
this.editor.addCommand(KeyMod.CtrlCmd | KeyCode.KEY_Z, () => {});
|
||||||
this.editor.addCommand(KeyMod.CtrlCmd | KeyMod.Shift | 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(
|
this.disposables(
|
||||||
asm_editor_store.did_undo.observe(({ value: source }) => {
|
asm_editor_store.did_undo.observe(({ value: source }) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user