common: make command palette keybinding same across web & desktop (#9235)

Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
This commit is contained in:
01zulfi
2026-01-17 21:18:52 +05:00
committed by GitHub
parent 44a7aed308
commit 67fe25bc8b
2 changed files with 2 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ The following keyboard shortcuts will help you navigate Notesnook faster.
| --- | --- | --- | --- |
| Next tab | Ctrl Alt → / Ctrl Alt ⇧ → | Ctrl tab | ⌘ tab |
| Previous tab | Ctrl Alt ← / Ctrl Alt ⇧ ← | Ctrl ⇧ tab | ⌘ ⇧ tab |
| Command palette | Ctrl ⇧ P / Ctrl ⇧ : | Ctrl ⇧ P | ⌘ ⇧ P |
| Command palette | Ctrl ⇧ P / Ctrl ⇧ : | Ctrl ⇧ P / Ctrl ⇧ : | ⌘ ⇧ P / ⌘ ⇧ : |
| Quick open | Ctrl P | Ctrl P | ⌘ P |
| New tab | - | Ctrl T | ⌘ T |
| Close active tab | - | Ctrl W | ⌘ W |

View File

@@ -96,10 +96,7 @@ export const hotkeys = {
type: "hotkeys"
},
openCommandPalette: {
keys: normalizeKeys({
desktop: ["ctrl+shift+p"],
web: ["ctrl+shift+p", "ctrl+shift+:"]
}),
keys: normalizeKeys(["ctrl+shift+p", "ctrl+shift+:"]),
description: "Command palette",
category: "Navigation",
type: "hotkeys"