Skip to content

Commit

Permalink
clean up hotkeys
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicoptima committed May 2, 2023
1 parent 570d0dc commit a28657d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -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
Expand Down
3 changes: 0 additions & 3 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand All @@ -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({
Expand Down Expand Up @@ -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({
Expand Down

0 comments on commit a28657d

Please sign in to comment.