benji300 / joplin-note-tabs

Allows to open several notes at once in tabs and pin them.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enable keyboard shortcuts

yajo opened this issue Β· comments

All of Joplin can be used without touching the mouse. I do this with all apps that have tabs. However, this plugin with this key feature would be super productive! πŸŽ‰

Common shortcuts:

  • Ctrl+tab: switch to last active tab.
  • Ctrl+pgup: previous tab.
  • Ctrl+pgdown: next tab.

However, they should be configurable like most others in Joplin.

Hi! I came here to write about the same thing. ;-)

I don't know if this is a feature of Joplin or this plugin, but only one menu item in this plugin ("Pin note to Tabs") is available for customizing hotkeys. Maybe the problem of the inability to configure hotkeys will be solved by adding the accelerator property to each plugin menu item. For example, as described in that message. But I'm not familiar enough with Javascript development to try modifying the plugin.

However, I found anyone available solution. You need to create or modify file keymap-desktop.json in the same directory where file settings.json is located and write the following into it:

[
  {
    "command": "tabsSwitchLastActive",
    "accelerator": "Ctrl+Tab"
  },
  {
    "command": "tabsSwitchLeft",
    "accelerator": "Ctrl+PageUp"
  },
  {
    "command": "tabsSwitchRight",
    "accelerator": "Ctrl+PageDown"
  }
]