emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/multiple-cursors b2906bb 097/434: Don't forget to autoload


From: ELPA Syncer
Subject: [nongnu] elpa/multiple-cursors b2906bb 097/434: Don't forget to autoload
Date: Sat, 7 Aug 2021 09:20:03 -0400 (EDT)

branch: elpa/multiple-cursors
commit b2906bb32958c5d3598d21f8158dcf5cece316ac
Author: Magnar Sveen <magnars@gmail.com>
Commit: Magnar Sveen <magnars@gmail.com>

    Don't forget to autoload
---
 mc-edit-lines.el           | 3 +++
 rectangular-region-mode.el | 1 +
 2 files changed, 4 insertions(+)

diff --git a/mc-edit-lines.el b/mc-edit-lines.el
index 52aec10..a2645b8 100644
--- a/mc-edit-lines.el
+++ b/mc-edit-lines.el
@@ -29,6 +29,7 @@
 
 (require 'multiple-cursors-core)
 
+;;;###autoload
 (defun mc/edit-lines ()
   "Add one cursor to each line of the active region.
 Starts from mark and moves in straight down or up towards the
@@ -49,6 +50,7 @@ mark-multiple if point and mark is on different columns."
       (funcall navigation-func))
     (multiple-cursors-mode)))
 
+;;;###autoload
 (defun mc/edit-ends-of-lines ()
   "Add one cursor to the end of each line in the active region."
   (interactive)
@@ -56,6 +58,7 @@ mark-multiple if point and mark is on different columns."
   (mc/execute-command-for-all-fake-cursors 'end-of-line)
   (end-of-line))
 
+;;;###autoload
 (defun mc/edit-beginnings-of-lines ()
   "Add one cursor to the beginning of each line in the active region."
   (interactive)
diff --git a/rectangular-region-mode.el b/rectangular-region-mode.el
index 2df3e1e..675b498 100644
--- a/rectangular-region-mode.el
+++ b/rectangular-region-mode.el
@@ -45,6 +45,7 @@
   (deactivate-mark))
 
 ;; Bind this to a key (for instance H-SPC) to start rectangular-region-mode
+;;;###autoload
 (defun set-rectangular-region-anchor ()
   (interactive)
   (set-marker rrm/anchor (point))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]