commit 31e49a3bb25c5668d3305b1e63f0ba1f52215707
parent 2d5cc4d5afc68ba032f429a316a5cf8f6c4ca98e
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Tue, 18 Feb 2020 18:01:36 +0100
joplin: a few more keybinds
Former-commit-id: eb9be7d7e1722d6d09717bcde668034e5a91d2a1
Diffstat:
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/joplin/keymap.json b/joplin/keymap.json
@@ -8,6 +8,8 @@
{ "keys": ["dd"], "type": "function", "command": "delete" },
{ "keys": ["`"], "type": "function", "command": "toggle_console" },
{ "keys": ["\\"], "type": "function", "command": "toggle_metadata" },
+ { "keys": ["U", "gg"], "type": "function", "command": "page_up" },
+ { "keys": ["D", "G"], "type": "function", "command": "page_down" },
{ "keys": [" "], "type": "exec", "command": "todo toggle $n" },
{ "keys": ["q"], "type": "exec", "command": "exit" },
{ "keys": ["@"], "type": "exec", "command": "sync" },
@@ -19,6 +21,7 @@
{ "keys": ["cw","R"], "type": "prompt", "command": "ren $c \"\"", "cursorPosition": -2 },
{ "keys": ["/","?"], "type": "prompt", "command": "search \"\"", "cursorPosition": -2 },
{ "keys": ["a"], "type": "prompt", "command": "attach $n /Users/alex/\"\"", "cursorPosition": -2 },
- { "keys": ["U", "gg"], "type": "function", "command": "page_up" },
- { "keys": ["D", "G"], "type": "function", "command": "page_down" }
+ { "keys": ["ta"], "type": "prompt", "command": "tag add $n", "cursorPosition": -3 },
+ { "keys": ["tl"], "type": "exec", "command": "tag list" },
+ { "keys": ["td"], "type": "prompt", "command": "tag remove $n", "cursorPosition": -3 }
]