Keyboard shortcut to move notebook of a selected note

Although it isn't in the key binding options it does have a command associated with it so it can be bound.
If you open the command palette (ctrl + shift + p) and type "moveToFolder" you can see the command itself.

If you want to bind that to a shortcut you can actually add this to your keymap-desktop.json in your profile dir (help > open profile directory) like:

  {
    "command": "moveToFolder",
    "accelerator": "Ctrl+Alt+R"
  }

If the file doesn't already exist the easiest way is to go to Options > Keyboard shortcuts and add a shortcut against one that doesn't have something already, that will create the file so you can copy the pattern if you are unfamiliar with json.

Worth noting this only seems to work if the focus is in the editor itself, not on the note list.

1 Like