| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-11-25 | Change evil-goto-definition to use a hook | Vasilij Schneidermann | |
| 2019-11-05 | Unwed evil-move-beyond-eol and evil-move-cursor-back | Justin Burkett | |
| The docstring of evil-cursor-back only mentions that it applies to moving the cursor back when exiting insert state, but in many cases it was tied to also moving the cursor when reaching the end of the line. We have evil-move-beyond-eol to control that behavior, and there doesn't seem to be a good reason that the two must be tied together. Fixes #1178 | |||
| 2019-07-28 | Fix :global behavior with trailing slashes | panda | |
| evil-delimited-arguments might drop characters from the chained command if the input ends with a trailing slash (so in something like :g/pattern/s/pat/repl/, the /pat/repl/ part gets dropped). Since the chained command follows after the slash following the pattern, we can just take a substring instead of relying on `evil-delimited-arguments` for it. | |||
| 2019-01-04 | Bump version to 1.2.141.2.14 | Eivind Fonn | |
| 2017-10-02 | update version to 1.2.131.2.13 | Eivind Fonn | |
| 2017-05-21 | Fixup f005120 Fix edge case with evil-search highlighting | Justin Burkett | |
| pattern is an object. We need to get the regex first. See #832 | |||
| 2017-05-12 | Fix typo in evil-ex-define-argument-type substitution | Justin Burkett | |
| 2017-05-11 | Fix edge case with evil-search highlighting | Justin Burkett | |
| With the ex command :s/^/ /, the pattern will match the beginning of the current line and the next line in evil-ex-hl-update-highlights when it should only match the beginning of the current line. | |||
| 2017-05-11 | Fix highlighting of multi-line substitute patterns | Justin Burkett | |
| evil-ex-hl-update-highlights was adding an extra forward-line for patterns that contained newlines in them, causing every other match to be highlighted. e.g., :%s/C-qC-j/a/ Note that with the g flag there was no problem because (evil-ex-pattern-whole-line pattern) was non-nil. See #824 | |||
| 2017-04-17 | :global should use last pattern if none given | Evgeni Kolev | |
| 2016-04-05 | Merge stable | Frank Fischer | |
| 2016-04-05 | update version to 1.2.121.2.12 | Frank Fischer | |
| 2016-04-05 | Respect `evil-search-wrap` when calling `evil-ex-find-next` (fix #654) | Frank Fischer | |
| 2016-03-07 | Merge with stable | Frank Fischer | |
| 2016-03-07 | update version to 1.2.111.2.11 | Frank Fischer | |
| 2016-01-18 | Merge stable | Frank Fischer | |
| 2016-01-18 | update version to 1.2.101.2.10 | Frank Fischer | |
| 2016-01-16 | Merge stable | Frank Fischer | |
| 2016-01-11 | update version to 1.2.91.2.9 | Frank Fischer | |
| 2016-01-05 | Merge stable | Frank Fischer | |
| 2015-11-09 | search: show default search string in shadow face (fix #591) | Frank Fischer | |
| 2015-11-09 | update version to 1.2.81.2.8 | Frank Fischer | |
| 2015-11-08 | Merge stable | Frank Fischer | |
| 2015-11-02 | update version to 1.2.71.2.7 | Frank Fischer | |
| 2015-10-26 | Merge stable | Frank Fischer | |
| 2015-10-26 | update version to 1.2.61.2.6 | Frank Fischer | |
| 2015-09-28 | Merge stable | Frank Fischer | |
| 2015-09-28 | update version to 1.2.51.2.5 | Frank Fischer | |
| 2015-09-13 | update version to 1.2.41.2.4 | Frank Fischer | |
| 2015-08-30 | merge stable | Frank Fischer | |
| 2015-08-18 | add persistent highlight option for interactive search (fix #562) | Frank Fischer | |
| 2015-08-16 | update version to 1.2.31.2.3 | Frank Fischer | |
| 2015-08-09 | update version to 1.2.21.2.2 | Frank Fischer | |
| 2015-07-04 | update version to 1.2.11.2.1 | Frank Fischer | |
| 2015-07-04 | update version to 1.2.01.2.0 | Frank Fischer | |
| 2015-06-04 | search: catch `error` in `evil-ex-hl-update-highlights` (fix #527) | Frank Fischer | |
| Errors in the replacement text cause an `error` to be raised, so we must catch general errors and display the appropriate message in the ex line. | |||
| 2015-06-04 | search: raise `user-error` instead of `error` | Frank Fischer | |
| 2015-05-11 | update version to 1.1.61.1.6 | Frank Fischer | |
| 2015-05-10 | update version to 1.1.51.1.5 | Frank Fischer | |
| 2015-05-03 | update version to 1.1.41.1.4 | Frank Fischer | |
| 2015-04-26 | update version to 1.1.3 | Frank Fischer | |
| 2015-04-20 | update version to 1.1.2 | Frank Fischer | |
| 2015-04-11 | update version to 1.1.11.1.1 | Frank Fischer | |
| 2015-04-08 | update version to 1.1.01.1.0 | Frank Fischer | |
| 2015-04-08 | add `evilupdate.el` script | Frank Fischer | |
| 2015-01-03 | use evil-word for symbol expansion | Tim Harper | |
| 2014-12-05 | evil-search-word-forward should save search in ring on failure | Herbert Jones | |
| To match the behavior of vim, when doing a search by "*" or "#", if the search fails, the searched word should still appear in the search ring. | |||
| 2014-12-05 | Substitute command use isearch-string when empty pattern | Herbert Jones | |
| The substitute command should use isearch-string when evil-search-module is set to use isearch. It much also respect case-fold-search case sensitivity settings. | |||
| 2014-11-29 | Move point to the partial match in an unsuccessful search | York Zhao | |
| In an incremental search, move point even if the search matches only part of the searched string. This is the behavior of the Emacs `isearch', and is more convenient because incremental search has been frequently used to quickly move the point, in which case it's too easy to have a typo. It would be really annoying if we have to restart the search only because of a minor typo. | |||
| 2014-10-25 | replace `error` with `user-error` where appropriate | Frank Fischer | |
