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

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

[nongnu] elpa/multiple-cursors 7d79b98 182/434: Autoload new functions.


From: ELPA Syncer
Subject: [nongnu] elpa/multiple-cursors 7d79b98 182/434: Autoload new functions.
Date: Sat, 7 Aug 2021 09:20:21 -0400 (EDT)

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

    Autoload new functions.
---
 mc-mark-more.el | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/mc-mark-more.el b/mc-mark-more.el
index 56e4852..95b843e 100644
--- a/mc-mark-more.el
+++ b/mc-mark-more.el
@@ -311,6 +311,7 @@ is one of the above."
 
 (defvar mc--restrict-mark-all-to-symbols nil)
 
+;;;###autoload
 (defun mc/mark-all-like-this-dwim (arg)
   "Tries to guess what you want to mark all of.
 Can be pressed multiple times to increase selection.
@@ -345,6 +346,7 @@ With prefix, it behaves the same as original 
`mc/mark-all-like-this'"
 (defun mc--in-defun ()
   (bounds-of-thing-at-point 'defun))
 
+;;;###autoload
 (defun mc/mark-all-like-this-in-defun ()
   "Mark all like this in defun."
   (interactive)
@@ -355,6 +357,7 @@ With prefix, it behaves the same as original 
`mc/mark-all-like-this'"
         (mc/mark-all-like-this))
     (mc/mark-all-like-this)))
 
+;;;###autoload
 (defun mc/mark-all-words-like-this-in-defun ()
   "Mark all words like this in defun."
   (interactive)
@@ -365,6 +368,7 @@ With prefix, it behaves the same as original 
`mc/mark-all-like-this'"
         (mc/mark-all-words-like-this))
     (mc/mark-all-words-like-this)))
 
+;;;###autoload
 (defun mc/mark-all-symbols-like-this-in-defun ()
   "Mark all symbols like this in defun."
   (interactive)
@@ -400,6 +404,7 @@ With prefix, it behaves the same as original 
`mc/mark-all-like-this'"
          (>= (point) beg)
          (<= (point) end))))
 
+;;;###autoload
 (defun mc/mark-sgml-tag-pair ()
   "Mark the tag we're in and its pair for renaming."
   (interactive)



reply via email to

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