From a28657d94050f863e0de0f9458283365f23cb87e Mon Sep 17 00:00:00 2001 From: celeste Date: Tue, 2 May 2023 17:54:14 -0400 Subject: [PATCH] clean up hotkeys --- README.md | 3 --- main.ts | 3 --- 2 files changed, 6 deletions(-) diff --git a/README.md b/README.md index 6c7d766..b3f8f3d 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,6 @@ If you are interested in funding development of Loom(sidian), you can **[support - generate - `Ctrl+Space` - generate siblings - `Ctrl+Shift+Space` -- create child - `Ctrl+Alt+n` -- create sibling - `Alt+n` - clone (current node) - `Ctrl+Alt+c` - split at point - `Alt+c` - delete (current node) - `Alt+Backspace` @@ -29,7 +27,6 @@ Navigation: - switch to previous sibling - `Alt+Up` - switch to parent - `Alt+Left` - switch to (most recently visited) child - `Alt+Right` -- collapse/expand current node - `Alt+e` In the editor: - `Shift+click` on the text corresponding to a node to switch to it diff --git a/main.ts b/main.ts index 2539715..0156eab 100644 --- a/main.ts +++ b/main.ts @@ -311,7 +311,6 @@ export default class LoomPlugin extends Plugin { withState(checking, (state) => { this.app.workspace.trigger("loom:create-child", state.current); }), - hotkeys: [{ modifiers: ["Ctrl", "Alt"], key: "n" }], }); this.addCommand({ @@ -322,7 +321,6 @@ export default class LoomPlugin extends Plugin { withState(checking, (state) => { this.app.workspace.trigger("loom:create-sibling", state.current); }), - hotkeys: [{ modifiers: ["Alt"], key: "n" }], }); this.addCommand({ @@ -497,7 +495,6 @@ export default class LoomPlugin extends Plugin { withState(checking, (state) => { this.app.workspace.trigger("loom:toggle-collapse", state.current); }), - hotkeys: [{ modifiers: ["Alt"], key: "e" }], }); this.addCommand({