diff options
author | noa@gaiwan.org | 2024-06-15 17:08:34 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-06-15 17:08:34 +0000 |
commit | 8213c99308ddbe872a310f73590d664977df6eb6 (patch) | |
tree | daf30e2cc193c8e49b3bec735cbd42b17e8197dd /emacs | |
parent | 11d310d52004bb1c79abdca98f29b3973ffd25a6 (diff) |
Add iedit
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index f5d8180..1ad577e 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -868,6 +868,8 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." calendar-mark-holidays-flag t calendar-date-style 'iso) +;; Multiple cursors are a nice feature because they are very interactive. However, i've always found the emacs implementation a bit too janky. Iedit implements one case where multiple cursors are used, which is to put a cursor at every same symbol in the buffer and edit them all, sort of like a real-time query-replace. +(use-package iedit :ensure t) ;;; Replace ;; Anzu provides real-time updates to the replacement string when running query-replace. |