update packages
This commit is contained in:
@@ -56,7 +56,7 @@
|
||||
beg))
|
||||
|
||||
(defun mc/furthest-cursor-before-point ()
|
||||
(let ((beg (if mark-active (min (mark) (point)) (point)))
|
||||
(let ((beg (or (use-region-beginning) (point)))
|
||||
furthest)
|
||||
(mc/for-each-fake-cursor
|
||||
(when (< (mc/cursor-beg cursor) beg)
|
||||
@@ -65,7 +65,7 @@
|
||||
furthest))
|
||||
|
||||
(defun mc/furthest-cursor-after-point ()
|
||||
(let ((end (if mark-active (max (mark) (point)) (point)))
|
||||
(let ((end (or (use-region-end) (point)))
|
||||
furthest)
|
||||
(mc/for-each-fake-cursor
|
||||
(when (> (mc/cursor-end cursor) end)
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
;; -*- no-byte-compile: t; lexical-binding: nil -*-
|
||||
(define-package "multiple-cursors" "20260117.1733"
|
||||
(define-package "multiple-cursors" "20260419.931"
|
||||
"Multiple cursors for Emacs."
|
||||
'((emacs "24.4")
|
||||
(cl-lib "0.5"))
|
||||
:url "https://github.com/magnars/multiple-cursors.el"
|
||||
:commit "ddd677091afc7d65ce56d11866e18aeded110ada"
|
||||
:revdesc "ddd677091afc"
|
||||
:commit "94b8b07a4bab87f803123723b68227565429dfa1"
|
||||
:revdesc "94b8b07a4bab"
|
||||
:keywords '("editing" "cursors")
|
||||
:authors '(("Magnar Sveen" . "magnars@gmail.com"))
|
||||
:maintainers '(("Magnar Sveen" . "magnars@gmail.com")))
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
;; Copyright (C) 2012-2016 Magnar Sveen
|
||||
|
||||
;; Author: Magnar Sveen <magnars@gmail.com>
|
||||
;; Package-Version: 20260117.1733
|
||||
;; Package-Revision: ddd677091afc
|
||||
;; Package-Version: 20260419.931
|
||||
;; Package-Revision: 94b8b07a4bab
|
||||
;; Package-Requires: ((emacs "24.4") (cl-lib "0.5"))
|
||||
;; Keywords: editing cursors
|
||||
;; Homepage: https://github.com/magnars/multiple-cursors.el
|
||||
|
||||
Reference in New Issue
Block a user