Skip to content

Commit

Permalink
enhance: disable tilde autoair and enable quote autopairing
Browse files Browse the repository at this point in the history
  • Loading branch information
Bad3r committed Jul 8, 2023
1 parent e519f04 commit 7dd8e39
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/frontend/handler/editor.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -1561,6 +1561,8 @@
"{" "}"
"(" ")"
"`" "`"
"\"" "\""
"'" "'"
"~" "~"
"*" "*"
"_" "_"
Expand All @@ -1575,7 +1577,7 @@
(keys autopair-map)))

(def autopair-when-selected
#{"*" "^" "_" "=" "+" "/"})
#{"*" "^" "_" "=" "+" "/" "~"})

(def delete-map
(assoc autopair-map
Expand Down

0 comments on commit 7dd8e39

Please sign in to comment.