diff options
author | noa | 2025-04-29 15:04:48 +0800 |
---|---|---|
committer | noa | 2025-04-29 15:04:48 +0800 |
commit | c1a0536eb53b44253f846a20d30b5151a12544a5 (patch) | |
tree | 421cf9ec4f1627500e00461820e24eabcf038fa3 | |
parent | 6fe9bbd76646fbbb3c3691c08b9c0131be4dfc82 (diff) |
No more waiting for Emacs 30
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/emacs/init.el b/emacs/init.el index bcdfe8b..0e85913 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -90,10 +90,8 @@ :custom (mouse-yank-at-point t) (mouse-drag-and-drop-region nil) - (mouse-yank-at-point t) ;; Allow for slightly sloppier clicking. - (mouse-prefer-closest-glyph t) ;; Emacs 30 - ) + (mouse-prefer-closest-glyph t)) ;; Shift click to select region with the mouse (https://christiantietze.de/posts/2022/07/shift-click-in-emacs-to-select/) (global-set-key (kbd "S-<down-mouse-1>") #'mouse-set-mark) |