diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-12-01 11:22:51 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-12-01 11:22:51 +0100 |
commit | 203b9795a5e258f4eb979228efdea35120f7e9d9 (patch) | |
tree | 51835a761eb62656e673cae61fbf723f8a604b6a /.config/emacs/editing.el | |
parent | 8a7ebce5c536141264511a6bcb4692383c18ab14 (diff) |
emacs: Rework multiple cursors section
Diffstat (limited to '.config/emacs/editing.el')
-rw-r--r-- | .config/emacs/editing.el | 2 |
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) |