Compare commits

..

No commits in common. "master" and "1.5.0" have entirely different histories.

9 changed files with 14 additions and 13 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
;;; multiple-cursors.el --- Multiple cursors for emacs. -*- lexical-binding: t; -*- ;;; multiple-cursors.el --- Multiple cursors for emacs.
;; Copyright (C) 2012-2016 Magnar Sveen ;; Copyright (C) 2012-2016 Magnar Sveen

View File

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