From a44227a4c1c5e9183251413fadf1800b2672b958 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Fri, 9 Sep 2022 11:18:17 +0800 Subject: [PATCH] :memo: https://github.com/siyuan-note/siyuan/issues/5836 --- app/src/protyle/util/hotKey.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/util/hotKey.ts b/app/src/protyle/util/hotKey.ts index ea27cc658..1ba352dd7 100644 --- a/app/src/protyle/util/hotKey.ts +++ b/app/src/protyle/util/hotKey.ts @@ -1,6 +1,6 @@ import {isCtrl} from "./compatibility"; -// 是否匹配 ⇧⌘[] / ⌘[] / ⌥[] / ⌥⌘[] / ⇧Tab / [] +// 是否匹配 ⇧⌘[] / ⌘[] / ⌥[] / ⌥⌘[] / ⌥⇧[] / ⌥⇧⌘[] / ⇧Tab / [] export const matchHotKey = (hotKey: string, event: KeyboardEvent) => { if (hotKey === "") { return false;