diff --git a/docs/index.md b/docs/index.md index 2aaa473..6cf0822 100644 --- a/docs/index.md +++ b/docs/index.md @@ -38,7 +38,8 @@ Available for Mac, Windows, and Linux. ⌥ + Shift + Enter Add new block at the start of the buffer ⌘ + ⌥ + Enter Split the current block at cursor position ⌘ + L Change block language -⌘ + S Create a new note from the current block +⌘ + N Create a new note buffer +⌘ + S Create a new note buffer from the current block ⌘ + P Open note selector ⌘ + Down Goto next block ⌘ + Up Goto previous block @@ -56,7 +57,8 @@ Ctrl + Shift + Enter Add new block at the end of the buffer Alt + Shift + Enter Add new block at the start of the buffer Ctrl + Alt + Enter Split the current block at cursor position Ctrl + L Change block language -Ctrl + S Create a new note from the current block +Ctrl + N Create a new note buffer +Ctrl + S Create a new note buffer from the current block Ctrl + P Open note selector Ctrl + Down Goto next block Ctrl + Up Goto previous block diff --git a/shared-utils/key-helper.ts b/shared-utils/key-helper.ts index 900a78f..8a6ac0b 100644 --- a/shared-utils/key-helper.ts +++ b/shared-utils/key-helper.ts @@ -9,7 +9,8 @@ export const keyHelpStr = (platform: string) => { [`${altChar} + Shift + Enter`, "Add new block at the start of the buffer"], [`${modChar} + ${altChar} + Enter`, "Split the current block at cursor position"], [`${modChar} + L`, "Change block language"], - [`${modChar} + S`, "Create a new note from the current block"], + [`${modChar} + N`, "Create a new note buffer"], + [`${modChar} + S`, "Create a new note buffer from the current block"], [`${modChar} + P`, "Open note selector"], [`${modChar} + Down`, "Goto next block"], [`${modChar} + Up`, "Goto previous block"],