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

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

[nongnu] elpa/evil-surround 0a6741684b 024/175: Merge pull request #13 f


From: ELPA Syncer
Subject: [nongnu] elpa/evil-surround 0a6741684b 024/175: Merge pull request #13 from milkypostman/master
Date: Mon, 9 Oct 2023 13:01:00 -0400 (EDT)

branch: elpa/evil-surround
commit 0a6741684ba93afebae04f7d460b5a4ec8f4f4ee
Merge: 97d1f82e95 c42ddb5d1d
Author: Tim Harper <timcharper@gmail.com>
Commit: Tim Harper <timcharper@gmail.com>

    Merge pull request #13 from milkypostman/master
    
    add autoloads
---
 surround.el | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/surround.el b/surround.el
index 0a2506756f..be481b73fd 100644
--- a/surround.el
+++ b/surround.el
@@ -251,19 +251,23 @@ Becomes this:
   (interactive "<R>c")
   (surround-region beg end type char t))
 
+;;;###autoload
 (define-minor-mode surround-mode
   "Buffer-local minor mode to emulate surround.vim."
   :keymap (make-sparse-keymap)
   (evil-normalize-keymaps))
 
+;;;###autoload
 (defun turn-on-surround-mode ()
   "Enable surround-mode in the current buffer."
   (surround-mode 1))
 
+;;;###autoload
 (defun turn-off-surround-mode ()
   "Disable surround-mode in the current buffer."
   (surround-mode -1))
 
+;;;###autoload
 (define-globalized-minor-mode global-surround-mode
   surround-mode turn-on-surround-mode
   "Global minor mode to emulate surround.vim.")



reply via email to

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