diff options
-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. |