[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/evil-surround 9a7ab545dd 085/175: Add explicit autoload de
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/evil-surround 9a7ab545dd 085/175: Add explicit autoload definitions to avoid implicit evil dependency |
Date: |
Mon, 9 Oct 2023 13:01:05 -0400 (EDT) |
branch: elpa/evil-surround
commit 9a7ab545dd2d10be5ed8abfc2d77b03fc05518e2
Author: Wouter Bolsterlee <wouter@bolsterl.ee>
Commit: Wouter Bolsterlee <wouter@bolsterl.ee>
Add explicit autoload definitions to avoid implicit evil dependency
A plain autoload cookie does not work correclty for functions defined
with evil-define-command, since that depends on evil being loaded, which
is not the case when the autoload file is process during Emacs startup.
Fixes #82.
---
evil-surround.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/evil-surround.el b/evil-surround.el
index 10873c6536..3fdfc8bb33 100755
--- a/evil-surround.el
+++ b/evil-surround.el
@@ -166,7 +166,7 @@ See also `evil-surround-outer-overlay'."
(evil-expand-range range)
range)))
-;;;###autoload
+;;;###autoload (autoload 'evil-surround-delete "evil-surround" nil t)
(evil-define-command evil-surround-delete (char &optional outer inner)
"Delete the surrounding delimiters represented by CHAR.
Alternatively, the text to delete can be represented with
@@ -190,7 +190,7 @@ between these overlays is what is deleted."
(when outer (delete-overlay outer))
(when inner (delete-overlay inner)))))))
-;;;###autoload
+;;;###autoload (autoload 'evil-surround-change "evil-surround" nil t)
(evil-define-command evil-surround-change (char &optional outer inner)
"Change the surrounding delimiters represented by CHAR.
Alternatively, the text to delete can be represented with the
- [nongnu] elpa/evil-surround 47721ca824 035/175: Improve surround-outer-overlay and surround-inner-overlay (issue/30), (continued)
- [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
- [nongnu] elpa/evil-surround 0209cf9170 004/175: adds angle bracket surround, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround d911f1eb70 012/175: Merge pull request #3 from epsilon47/master, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround b40d2b6542 017/175: Merge pull request #7 from cofi/docs, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround e50649f7cd 061/175: Improve evil-surround-block doc comment, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 9f1ab3c302 065/175: typo, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 18a33859d7 055/175: Merge pull request #57 from Drolyt/patch-1, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 4c5e3bf0bc 056/175: Fix indentation of surrounded lines, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 9724dcce1b 091/175: fix #84: revert 66b8f89 which reintroduced #24 as a regression, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 9a7ab545dd 085/175: Add explicit autoload definitions to avoid implicit evil dependency,
ELPA Syncer <=
- [nongnu] elpa/evil-surround 4962fb5bdd 102/175: fix evil surround's case, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround a213d30c86 020/175: Fix markup glitch in readme., ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 627d1e69ea 021/175: Merge pull request #9 from cofi/master, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 97d1f82e95 022/175: Don't trim outer whitespace, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround d94fcbbeaf 034/175: Merge https://github.com/ersiner/evil-surround, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 6002c9d697 041/175: Update README to reflect renaming, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround f44d524315 058/175: Merge pull request #63 from jbranso/master, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround bfa438cf62 066/175: add license, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 9a682289de 054/175: Update README.md, ELPA Syncer, 2023/10/09
- [nongnu] elpa/evil-surround 62742576f0 092/175: Merge pull request #93 from ninrod/master, ELPA Syncer, 2023/10/09