mirror of
https://github.com/magnars/multiple-cursors.el.git
synced 2025-10-13 21:03:05 +00:00

Instead of erroring if there is no next (respectively previous) cursor mc/cycle-forward (respectively mc/cycle-backward) will just loop back to the first (respectively last) cursor.
89 lines
2.7 KiB
EmacsLisp
89 lines
2.7 KiB
EmacsLisp
;;; mc-cycle-cursors.el
|
|
|
|
;; Copyright (C) 2012 Magnar Sveen
|
|
|
|
;; Author: Magnar Sveen <magnars@gmail.com>
|
|
;; Keywords: editing cursors
|
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;; This scrolls the buffer to center each cursor in turn.
|
|
;; Scroll down with C-v, scroll up with M-v
|
|
;; This is nice when you have cursors that's outside of your view.
|
|
|
|
;;; Code:
|
|
|
|
(require 'multiple-cursors-core)
|
|
|
|
(eval-when-compile (require 'cl))
|
|
|
|
(defun mc/next-cursor-after-point ()
|
|
(let ((pos (point))
|
|
(next-pos (point-max))
|
|
next)
|
|
(mc/for-each-fake-cursor
|
|
(let ((cursor-pos (overlay-get cursor 'point)))
|
|
(when (and (< pos cursor-pos)
|
|
(< cursor-pos next-pos))
|
|
(setq next-pos cursor-pos)
|
|
(setq next cursor))))
|
|
next))
|
|
|
|
(defun mc/prev-cursor-before-point ()
|
|
(let ((pos (point))
|
|
(prev-pos (point-min))
|
|
prev)
|
|
(mc/for-each-fake-cursor
|
|
(let ((cursor-pos (overlay-get cursor 'point)))
|
|
(when (and (> pos cursor-pos)
|
|
(> cursor-pos prev-pos))
|
|
(setq prev-pos cursor-pos)
|
|
(setq prev cursor))))
|
|
prev))
|
|
|
|
(defun mc/cycle-forward (&optional error-if-no-next-cursor)
|
|
(interactive (list prefix-arg))
|
|
(let ((next-cursor (mc/next-cursor-after-point)))
|
|
(cond
|
|
(next-cursor
|
|
(mc/create-fake-cursor-at-point)
|
|
(mc/pop-state-from-overlay next-cursor)
|
|
(recenter))
|
|
(error-if-no-next-cursor
|
|
(error "We're already at the last cursor"))
|
|
(t
|
|
(mc/cycle-backward t)))))
|
|
|
|
(defun mc/cycle-backward (&optional error-if-no-previous-cursor)
|
|
(interactive (list prefix-arg))
|
|
(let ((prev-cursor (mc/prev-cursor-before-point)))
|
|
(cond
|
|
(prev-cursor
|
|
(mc/create-fake-cursor-at-point)
|
|
(mc/pop-state-from-overlay prev-cursor)
|
|
(recenter))
|
|
(error-if-no-previous-cursor
|
|
(error "We're already at the first cursor"))
|
|
(t
|
|
(mc/cycle-forward t)))))
|
|
|
|
(define-key mc/keymap (kbd "C-v") 'mc/cycle-forward)
|
|
(define-key mc/keymap (kbd "M-v") 'mc/cycle-backward)
|
|
|
|
(provide 'mc-cycle-cursors)
|
|
|
|
;;; mc-cycle-cursors.el ends here
|