From a9f054f6f0303ea275b70224ee00d3cf0535dfd0 Mon Sep 17 00:00:00 2001 From: tamamaforever <60184645+tamamaforever@users.noreply.github.com> Date: Fri, 2 Apr 2021 15:01:13 +0800 Subject: [PATCH 1/2] Update README.md I suggest the Keyboard shortcuts area need to change. --- README.md | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ba2d597..36c4233 100644 --- a/README.md +++ b/README.md @@ -117,8 +117,42 @@ This plugin provides additional commands as described in the following table. ### Keyboard shortcuts -Keyboard shortcuts can be assigned in user options via `Tools > Options > Keyboard Shortcuts` to all [commands](#commands) which are assigned to the `Tools>Favorites` menu context. -In the keyboard shortcut editor, search for the command label where shortcuts shall be added. +1. Go to Joplin Setting>Keyboard Shortcuts>Export +2.Open the Export .json file with notepad, follow the structure to add command hotkey. +3. Example: +``` +[ + { + "command": "newTodo", + "accelerator": null + }, + { + "command": "textCode", + "accelerator": null + }, + { + "command": "tabsPinNote", + "accelerator": "Ctrl+T" + }, + { + "command": "tabsSwitchLeft", + "accelerator": "Ctrl+Left" + }, + { + "command": "tabsSwitchRight", + "accelerator": "Ctrl+Right" + }, + { + "command": "tabsUnpinNote", + "accelerator": "Ctrl+W" + }, + { + "command": "tabsSwitchLastActive", + "accelerator": "Ctrl+Tab" + } +] +``` +4. save the file then import at Joplin Setting>Keyboard Shortcuts ## User options From 987be074d13309018743113ded912ffba219d453 Mon Sep 17 00:00:00 2001 From: tamamaforever <60184645+tamamaforever@users.noreply.github.com> Date: Sun, 4 Apr 2021 00:39:06 +0800 Subject: [PATCH 2/2] Update README.md Edited as subchapter Manual workaround to assign keyboard shortcuts. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 36c4233..698f4b1 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,10 @@ This plugin provides additional commands as described in the following table. ### Keyboard shortcuts +Keyboard shortcuts can be assigned in user options via `Tools > Options > Keyboard Shortcuts` to all [commands](#commands) which are assigned to the `Tools>Favorites` menu context. +In the keyboard shortcut editor, search for the command label where shortcuts shall be added. + +#### Manual workaround 1. Go to Joplin Setting>Keyboard Shortcuts>Export 2.Open the Export .json file with notepad, follow the structure to add command hotkey. 3. Example: