[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.")
- [nongnu] branch elpa/evil-surround created (now bd98f7f549), ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround b2d9aebfe9 007/175: fixes whitespace + 1 munching issue when deleting surrounding brackets + space, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround fc676618e1 013/175: Make surround-pairs-alist buffer local., ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround a936638bec 002/175: Began port. Surround region working. Change surround/delete surround not., ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 205c650d7f 008/175: Refactor surround-pair for readability, flexibility. Subtle behavior change, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 67a82903ec 009/175: Use text object keymaps, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround e25f5f9c00 015/175: Add note about sentence behavior with link to issue., ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround ac3f8ca8b0 014/175: Add readme., ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 0a6741684b 024/175: Merge pull request #13 from milkypostman/master,
ELPA Syncer <=
- [nongnu] elpa/evil-surround 92eee31db7 028/175: Fix link to Evil, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround f33d940264 036/175: Rename surround.el to evil-surround.el, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround a4a04c6f01 075/175: Merge pull request #74 from lislon/surround-repeat, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 16c534b173 089/175: Unset execute permission for files, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround eda6b0d6ca 079/175: Merge pull request #78 from vyp/#55, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 50c10ab484 025/175: add autoloads to interactive functions for use in emacs proper, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 2de26062dd 031/175: Fix doc for surround delete operator, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 88f371a77f 029/175: Use `surround-line' instead of `evil-line' for linewise operations, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 47721ca824 035/175: Improve surround-outer-overlay and surround-inner-overlay (issue/30), ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 277534ce75 003/175: Replaced with Vegard's port of vimpulse-surround, ELPA Syncer, 2023/10/09