update packages

This commit is contained in:
2025-11-25 19:52:03 +01:00
parent 14ba373378
commit dbbae92267
280 changed files with 13451 additions and 11207 deletions

View File

@@ -1,4 +1,4 @@
;;; mc-cycle-cursors.el
;;; mc-cycle-cursors.el -*- lexical-binding: t; -*-
;; Copyright (C) 2012-2016 Magnar Sveen

View File

@@ -1,4 +1,4 @@
;;; mc-edit-lines.el
;;; mc-edit-lines.el -*- lexical-binding: t; -*-
;; Copyright (C) 2012-2016 Magnar Sveen

View File

@@ -1,4 +1,4 @@
;;; mc-hide-unmatched-lines-mode.el
;;; mc-hide-unmatched-lines-mode.el -*- lexical-binding: t; -*-
;; Copyright (C) 2014 Aleksey Fedotov

View File

@@ -1,4 +1,4 @@
;;; mc-mark-more.el
;;; mc-mark-more.el -*- lexical-binding: t; -*-
;; Copyright (C) 2012-2016 Magnar Sveen

View File

@@ -1,4 +1,4 @@
;;; mc-mark-pop.el --- Pop cursors off of the mark stack
;;; mc-mark-pop.el --- Pop cursors off of the mark stack -*- lexical-binding: t; -*-
(require 'multiple-cursors-core)

View File

@@ -1,4 +1,4 @@
;;; mc-separate-operations.el - functions that work differently on each cursor
;;; mc-separate-operations.el - functions that work differently on each cursor -*- lexical-binding: t; -*-
;; Copyright (C) 2012-2016 Magnar Sveen

View File

@@ -1,4 +1,4 @@
;;; multiple-cursors-core.el --- An experiment in multiple cursors for emacs.
;;; multiple-cursors-core.el --- An experiment in multiple cursors for emacs. -*- lexical-binding: t; -*-
;; Copyright (C) 2012-2016 Magnar Sveen
@@ -885,11 +885,10 @@ for running commands with multiple cursors."
"Saves preferences for running commands with multiple cursors to `mc/list-file'"
(with-temp-file mc/list-file
(emacs-lisp-mode)
(insert ";; This file is automatically generated by the multiple-cursors extension.")
(newline)
(insert ";; It keeps track of your preferences for running commands with multiple cursors.")
(newline)
(newline)
(when (> emacs-major-version 30)
(insert ";; -*- lexical-binding: t; -*-\n"))
(insert ";; This file is automatically generated by the multiple-cursors extension.\n")
(insert ";; It keeps track of your preferences for running commands with multiple cursors.\n\n")
(mc/dump-list 'mc/cmds-to-run-for-all)
(newline)
(mc/dump-list 'mc/cmds-to-run-once)))

View File

@@ -1,10 +1,10 @@
;; -*- no-byte-compile: t; lexical-binding: nil -*-
(define-package "multiple-cursors" "20250210.1813"
(define-package "multiple-cursors" "20251006.2038"
"Multiple cursors for emacs."
'((cl-lib "0.5"))
:url "https://github.com/magnars/multiple-cursors.el"
:commit "89f1a8df9b1fc721b1672b4c7b6d3ab451e7e3ef"
:revdesc "89f1a8df9b1f"
:commit "9017f3be6b00c1d82e33409db4a178133fb39d47"
:revdesc "9017f3be6b00"
:keywords '("editing" "cursors")
:authors '(("Magnar Sveen" . "magnars@gmail.com"))
:maintainers '(("Magnar Sveen" . "magnars@gmail.com")))

View File

@@ -1,10 +1,10 @@
;;; multiple-cursors.el --- Multiple cursors for emacs.
;;; multiple-cursors.el --- Multiple cursors for emacs. -*- lexical-binding: t; -*-
;; Copyright (C) 2012-2016 Magnar Sveen
;; Author: Magnar Sveen <magnars@gmail.com>
;; Package-Version: 20250210.1813
;; Package-Revision: 89f1a8df9b1f
;; Package-Version: 20251006.2038
;; Package-Revision: 9017f3be6b00
;; Package-Requires: ((cl-lib "0.5"))
;; Keywords: editing cursors
;; Homepage: https://github.com/magnars/multiple-cursors.el

View File

@@ -1,4 +1,4 @@
;;; rectangular-region-mode.el
;;; rectangular-region-mode.el -*- lexical-binding: t; -*-
;; Copyright (C) 2012-2016 Magnar Sveen