fix: failed to insert [, {, ( on new created page

This commit is contained in:
Tienson Qin
2021-04-28 22:39:46 +08:00
parent fd8736d34f
commit 3b353ac515
2 changed files with 7 additions and 5 deletions

View File

@@ -2154,9 +2154,11 @@
(util/move-cursor-to input pos))))))))
(defn keydown-not-matched-handler
[input input-id format]
[format]
(fn [e key-code]
(let [key (gobj/get e "key")
(let [input-id (state/get-edit-input-id)
input (state/get-input)
key (gobj/get e "key")
value (gobj/get input "value")
ctrlKey (gobj/get e "ctrlKey")
metaKey (gobj/get e "metaKey")