summaryrefslogtreecommitdiff
path: root/.config/emacs/editing.el
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-12-01 11:22:51 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-12-01 11:22:51 +0100
commit203b9795a5e258f4eb979228efdea35120f7e9d9 (patch)
tree51835a761eb62656e673cae61fbf723f8a604b6a /.config/emacs/editing.el
parent8a7ebce5c536141264511a6bcb4692383c18ab14 (diff)
emacs: Rework multiple cursors section
Diffstat (limited to '.config/emacs/editing.el')
-rw-r--r--.config/emacs/editing.el2
1 files changed, 0 insertions, 2 deletions
diff --git a/.config/emacs/editing.el b/.config/emacs/editing.el
index 72d5b48..9fb2acb 100644
--- a/.config/emacs/editing.el
+++ b/.config/emacs/editing.el
@@ -231,7 +231,6 @@ This function is identical to `mm-search-forward-char' with N negated."
THING is any symbol that can be given to ‘bounds-of-thing-at-point’.
If there is an active region, the next THING will be marked."
- (require 'multiple-cursors)
(let ((bounds (bounds-of-thing-at-point thing)))
(if (null bounds)
(progn
@@ -260,7 +259,6 @@ If there is an active region, the next THING will be marked."
With prefix arg N, the regions are rotated N places (backwards if N is
negative)."
(interactive "p")
- (require 'multiple-cursors)
(when (= (mc/num-cursors) 1)
(user-error "Cannot transpose with only one cursor."))
(unless (use-region-p)