This commit is contained in:
parent
7e37563fcd
commit
d60d3ea3d6
1 changed files with 2 additions and 1 deletions
|
@ -134,7 +134,8 @@ export const filterHotkey = (event: KeyboardEvent, app: App) => {
|
|||
return true;
|
||||
}
|
||||
const target = event.target as HTMLElement;
|
||||
if (isNotCtrl(event) && !event.shiftKey && !event.altKey &&
|
||||
// 点击最近的文档列表会 dispatch keydown 的 Enter https://github.com/siyuan-note/siyuan/issues/12967
|
||||
if (event.isTrusted && isNotCtrl(event) && !event.shiftKey && !event.altKey &&
|
||||
!["INPUT", "TEXTAREA"].includes(target.tagName) &&
|
||||
["0", "1", "2", "3", "4", "j", "k", "l", ";", "s", " ", "p", "enter", "a", "s", "d", "f", "q", "x"].includes(event.key.toLowerCase())) {
|
||||
let cardElement: Element;
|
||||
|
|
Loading…
Add table
Reference in a new issue