Add Mod+Shift+P shortcut to initial buffer content

This commit is contained in:
Jonatan Heyman 2025-08-22 13:52:03 +02:00
parent 28b0b006e5
commit 9f0db3c00f
2 changed files with 3 additions and 0 deletions

View File

@ -43,6 +43,7 @@ Available for Mac, Windows, and Linux.
⌘ + N Create a new note buffer ⌘ + N Create a new note buffer
⌘ + S Move the current block to another (or new) buffer ⌘ + S Move the current block to another (or new) buffer
⌘ + P Open note selector ⌘ + P Open note selector
⌘ + Shift + P Open command palette
⌘ + Down Goto next block ⌘ + Down Goto next block
⌘ + Up Goto previous block ⌘ + Up Goto previous block
⌘ + A Select all text in a note block. Press again to select the whole buffer ⌘ + A Select all text in a note block. Press again to select the whole buffer
@ -65,6 +66,7 @@ Ctrl + L Change block language
Ctrl + N Create a new note buffer Ctrl + N Create a new note buffer
Ctrl + S Move the current block to another (or new) buffer Ctrl + S Move the current block to another (or new) buffer
Ctrl + P Open note selector Ctrl + P Open note selector
Ctrl + Shift + P Open command palette
Ctrl + Down Goto next block Ctrl + Down Goto next block
Ctrl + Up Goto previous block Ctrl + Up Goto previous block
Ctrl + A Select all text in a note block. Press again to select the whole buffer Ctrl + A Select all text in a note block. Press again to select the whole buffer

View File

@ -12,6 +12,7 @@ export const keyHelpStr = (platform: string, extended: boolean = false) => {
[`${modChar} + N`, "Create a new note buffer"], [`${modChar} + N`, "Create a new note buffer"],
[`${modChar} + S`, "Move the current block to another (or new) buffer"], [`${modChar} + S`, "Move the current block to another (or new) buffer"],
[`${modChar} + P`, "Open note selector"], [`${modChar} + P`, "Open note selector"],
[`${modChar} + Shift + P`, "Open command palette"],
[`${modChar} + Down`, "Goto next block"], [`${modChar} + Down`, "Goto next block"],
[`${modChar} + Up`, "Goto previous block"], [`${modChar} + Up`, "Goto previous block"],
[`${modChar} + A`, "Select all text in a note block. Press again to select the whole buffer"], [`${modChar} + A`, "Select all text in a note block. Press again to select the whole buffer"],