summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-18Revert "surround-function improvement for lisp modes (#134)"Filipe Correa Lima da Silva
This reverts commit 5a20c9757eff64e1567d313eb254126aef2bf3b2.
2018-10-09fix #143: add readme entry on how to add new pairs through evilninrod
2018-02-23fix readme on how to add a new surround pairFilipe Correa Lima da Silva
- thanks @edkolev and @amilkov3 - see issue #136
2018-01-02surround-function improvement for lisp modes (#134)Dickby
surround-function improvement for lisp modes
2017-12-10try same layout layout as evilninrod
2017-12-10try out new logo scaleninrod
2017-12-10Fix regression for Emacs 26 caused by #125 fixJustin Burkett
Emacs 26 saves this-command-keys across read-from-minibuffer, so make sure this-command-keys is cleared when we record it before read-from-minibuffer. Fixes #131
2017-12-07add tests for @jusbur's pull #130 which fixes #125Filipe Correa Lima da Silva
2017-12-07Fix repeat when pair is determined by functionJustin Burkett
Apparently when read-from-minibuffer is called in a function to read tags, the information in this-command-keys is discarded. Introduce evil-surround-read-from-minibuffer to record this information as well as the input in the minibuffer. There is probably a more elegant solution to recording repeat info in evil-surround out there, but this will work for now. Fixes #125
2017-12-02add yS testninrod
2017-12-02add backquote delimiter testninrod
2017-12-02fix typoninrod
2017-12-01closes #1121.0.1ninrod
2017-11-27Use ‘evil-surround’ as :group for customizable variableswouter bolsterlee
Before this change, there were two groups for this package in the customize interface. The customizable variables show up in the group named ‘surround’, while the mode itself shows up in the group named ‘evil-surround’. This is confusing and unnecessary. To address this, put everything inside the ‘evil-surround’ group, which is the same approach used by many other evil-mode extension packages.
2017-11-27add melpa stable badgeninrod
2017-11-22update logoninrod
2017-11-22add @edkolev's custom logoninrod
2017-11-22upgrade badges. add GPLv3 badge.ninrod
2017-10-04Make `ysw` work like `cw`, not `ce`Evgeni Kolev
2017-10-04Add tests for repeat, visual mode, visual line modeEvgeni Kolev
2017-09-10Merge pull request #120 from edkolev/use-examples-as-testsFilipe Silva
Add examples from readme as automated tests
2017-09-10Remove debug messagesEvgeni Kolev
2017-09-10Add examples from readme as automated testsEvgeni Kolev
2017-09-04Merge pull request #118 from edkolev/use-evil-test-helpersFilipe Silva
Use `evil-test-helpers` for testing
2017-08-06Use `evil-test-helpers` for testingEvgeni Kolev
2017-06-21update melpa badge link. thanks @agsdotninrod
- ref: https://github.com/emacs-evil/evil-surround/commit/5a45da3d711e3f00f05abdc378e4fc939471bce8#commitcomment-22672186
2017-06-06add credits to Tim C. HarperFilipe Correa Lima da Silva
2017-06-05fix evil surround's caseFilipe Correa Lima da Silva
2017-06-05add melpa badgeFilipe Correa Lima da Silva
2017-06-05fix travis badgeFilipe Correa Lima da Silva
2017-06-05closes #98: orgify readmeFilipe Correa Lima da Silva
2017-06-05attempt to display travis badgeFilipe Correa Lima da Silva
2017-06-05add credits to Tim Harperninrod
2017-06-05Add testsEvgeni Kolev
2017-01-24update readmev1.0.0ninrod
2017-01-20Fix defcustom type specification for pairs-alist variableWouter Bolsterlee
2017-01-16closes #91: evil-surround-pairs-alist typoFilipe Correa Lima da Silva
- thanks @Lynolix (https://github.com/Lynolix)
2017-01-15Merge pull request #93 from ninrod/masterFilipe Silva
fix #84: dot operator works again. reverts 66b8f89 which reintroduced #24 as a regression
2016-11-28fix #84: revert 66b8f89 which reintroduced #24 as a regressionninrod
2016-10-29Merge pull request #89 from LemmingAvalanche/execute-permissionsTim Harper
Unset execute permission for files
2016-10-29Unset execute permission for filesKristoffer Haugsbakk
Neither Elisp libraries nor readmes need to be executable in this sense. The permissions were changed from 644 to 755 in c96499e (“Extract surround-operator-alist to a customizeable variable”). A commit that didn’t have anything to do with permissions. So I guess some command was invoked by accident.
2016-10-26Merge pull request #88 from LemmingAvalanche/update-links-to-evilTim Harper
Point to new repository for Evil
2016-10-26Point to new repository for EvilKristoffer Haugsbakk
Evil is no longer hosted on Gitorious. This repository is apparently the new official repository for Evil, since it is hosted under Frank Fischer’s account, and Evil’s page on the Emacs wiki[1] points to the wiki of this repository as being Evil’s home page. [1] https://www.emacswiki.org/emacs/Evil
2016-09-11Merge pull request #83 from wbolster/use-explicit-autoload-definitionsTim Harper
Add explicit autoload definitions to avoid implicit evil dependency
2016-09-09Add explicit autoload definitions to avoid implicit evil dependencyWouter Bolsterlee
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.
2016-09-07Merge pull request #80 from mineo/doc-fixesTim Harper
Escape a backtick in markdown and fix the keywords on MELPA
2016-09-07Merge pull request #81 from wbolster/read-keys-with-translationTim Harper
Use evil helpers for correct key translation
2016-09-03Use evil helpers for correct key translationWouter Bolsterlee
Use evil’s facilities for reading keys from the keyboard, so that key translations are correctly applied. Change all commands that read keys that end up in the buffer as visible text to use the ‘<C>’ interactive spec (instead of ‘c’) and evil-read-key (instead of read-char).
2016-09-03Move the Keywords after the Mailing list headerWieland Hoffmann
At the moment, MELPA's archive-contents contains the mailing list information in the keywords because they're using an older version of Emacs for building archive-contents. I have verified that this does not break the Package-Requires header. This bug has been fixed in Emacs in https://debbugs.gnu.org/cgi/bugreport.cgi?bug=13207. The issue for MELPA is https://github.com/melpa/melpa/issues/4087.
2016-09-03Escape a backtickWieland Hoffmann