mirror of
https://github.com/cosmicoptima/loom.git
synced 2026-07-22 07:40:25 +00:00
clean up hotkeys
This commit is contained in:
parent
570d0dc886
commit
a28657d940
2 changed files with 0 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
3
main.ts
3
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({
|
||||
|
|
|
|||
Loading…
Reference in a new issue