Merge pull request #177 from logseq/defclass/fix/cmd-c-commit

fix(shortcut): fix meta+c problem
pull/645/head
Tienson Qin 2020-10-28 19:46:08 +08:00 committed by GitHub
commit 0d05b84fde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -233,7 +233,8 @@
(when (and (not (util/input? (gobj/get e "target")))
(not (gobj/get e "shiftKey"))
(not (gobj/get e "ctrlKey"))
(not (gobj/get e "altKey")))
(not (gobj/get e "altKey"))
(not (gobj/get e "metaKey")))
(when-let [repo-url (state/get-current-repo)]
(if (and
(not (state/get-edit-input-id))