clean up hotkeys

This commit is contained in:
celeste 2023-05-02 17:54:14 -04:00
parent 570d0dc886
commit a28657d940
2 changed files with 0 additions and 6 deletions

View file

@ -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

View file

@ -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({