From 9f0db3c00f18bce7757ca594c5e7663ce73394e2 Mon Sep 17 00:00:00 2001 From: Jonatan Heyman Date: Fri, 22 Aug 2025 13:52:03 +0200 Subject: [PATCH] Add Mod+Shift+P shortcut to initial buffer content --- docs/index.md | 2 ++ shared-utils/key-helper.ts | 1 + 2 files changed, 3 insertions(+) diff --git a/docs/index.md b/docs/index.md index 40a9c7c..9b7ec31 100644 --- a/docs/index.md +++ b/docs/index.md @@ -43,6 +43,7 @@ Available for Mac, Windows, and Linux. ⌘ + N Create a new note buffer ⌘ + S Move the current block to another (or new) buffer ⌘ + P Open note selector +⌘ + Shift + P Open command palette ⌘ + Down Goto next block ⌘ + Up Goto previous block ⌘ + 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 + S Move the current block to another (or new) buffer Ctrl + P Open note selector +Ctrl + Shift + P Open command palette Ctrl + Down Goto next block Ctrl + Up Goto previous block Ctrl + A Select all text in a note block. Press again to select the whole buffer diff --git a/shared-utils/key-helper.ts b/shared-utils/key-helper.ts index cd11173..d146b85 100644 --- a/shared-utils/key-helper.ts +++ b/shared-utils/key-helper.ts @@ -12,6 +12,7 @@ export const keyHelpStr = (platform: string, extended: boolean = false) => { [`${modChar} + N`, "Create a new note buffer"], [`${modChar} + S`, "Move the current block to another (or new) buffer"], [`${modChar} + P`, "Open note selector"], + [`${modChar} + Shift + P`, "Open command palette"], [`${modChar} + Down`, "Goto next block"], [`${modChar} + Up`, "Goto previous block"], [`${modChar} + A`, "Select all text in a note block. Press again to select the whole buffer"],