nextjournal / clojure-mode

Clojure/Script mode for CodeMirror 6
https://nextjournal.github.io/clojure-mode/
Eclipse Public License 2.0
158 stars 18 forks source link

Prevent DOM scrolling on kill shortcut #23

Closed AdamFrey closed 1 year ago

AdamFrey commented 2 years ago

I noticed when using clojure-mode on a tall page, whenever I tried the kill command (Ctrl-k) the kill would happen correctly but my page would get scrolled down to the bottom. This was because my browser was focusing on the temporary textarea element created in the copy-to-clipboard! function. Adding :preventScroll true fixed the problem for me.