Last active
April 22, 2022 03:39
-
-
Save BaksiLi/3e64647ab590c9ca44d78af3021a4419 to your computer and use it in GitHub Desktop.
Vim-style Joplin Keymap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": [":"], "type": "function", "command": "enter_command_line_mode" }, | |
{ "keys": ["TAB","l"], "type": "function", "command": "focus_next" }, | |
{ "keys": ["SHIFT_TAB","h"], "type": "function", "command": "focus_previous" }, | |
{ "keys": ["UP","k"], "type": "function", "command": "move_up" }, | |
{ "keys": ["DOWN","j"], "type": "function", "command": "move_down" }, | |
{ "keys": ["PAGE_UP","{"], "type": "function", "command": "page_up" }, | |
{ "keys": ["PAGE_DOWN","}"], "type": "function", "command": "page_down" }, | |
{ "keys": ["ENTER"], "type": "function", "command": "activate" }, | |
{ "keys": ["DELETE", "BACKSPACE"], "type": "function", "command": "delete" }, | |
{ "keys": [" "], "command": "todo toggle $n" }, | |
{ "keys": ["tc"], "type": "function", "command": "toggle_console" }, | |
{ "keys": ["tm"], "type": "function", "command": "toggle_metadata" }, | |
{ "keys": ["/"], "type": "prompt", "command": "search \"\"", "cursorPosition": -2 }, | |
{ "keys": ["mn"], "type": "prompt", "command": "mknote \"\"", "cursorPosition": -2 }, | |
{ "keys": ["mt"], "type": "prompt", "command": "mktodo \"\"", "cursorPosition": -2 }, | |
{ "keys": ["mb"], "type": "prompt", "command": "mkbook \"\"", "cursorPosition": -2 }, | |
{ "keys": ["yn"], "type": "prompt", "command": "cp $n \"\"", "cursorPosition": -2 }, | |
{ "keys": ["dn"], "type": "prompt", "command": "mv $n \"\"", "cursorPosition": -2 } | |
] |
Thank you!
Thank you too!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very nice! I love this file.