| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-03-04 | Bump version to 1.14.01.14.0 | Eivind Fonn | |
| 2020-03-04 | Docs: handle default values that must be evaluated | Eivind Fonn | |
| Also regenerate | |||
| 2020-03-03 | fix `wrong number of argument error` in evil-ex-command-window | Yiming Chen | |
| - evil-ex-command-window only accepts 0 arguments - and it doesn't make sense to call itself recursively - this issue was introduced in [1: 48ceb43] 1: 48ceb43f8a1e95e6d7eafe428ff640d83952462f Clean up compilation warnings from lexical binding | |||
| 2020-03-02 | Ignore &rest keyword in evil-define-command | panda | |
| 2020-02-24 | fix evil-define-state :exit-hook typo | sergey | |
| 2020-02-22 | Deprecate evil-add-to-alist, which doesn't work with lexical | Eivind Fonn | |
| 2020-02-22 | Makefile: add 'info' target | Jon Miller | |
| Useful to have a specific info target when some Emacs package installers expect this target (such as el-get). | |||
| 2020-02-22 | Spelling fix | Isak Johansson | |
| I found a spelling error while reading through the documentation. | |||
| 2020-02-22 | Correct typo (COMPOUNT->COMPOUND) in symbol name in window server selection ↵ | bassettmb | |
| data-type list. | |||
| 2020-02-03 | Clean up compilation warnings from lexical binding | Eivind Fonn | |
| 2020-01-30 | Change the way to get universal argument | Bet4 | |
| 2020-01-30 | Extract evil-append-register function | Ivan Yonchovski | |
| - Fixes https://github.com/emacs-evil/evil/issues/1260 ```elisp (advice-add 'evil-set-register :around (lambda (orig register text) (if (eq register ?\) ) (evil-append-register ?0 text) (funcall orig register text)))) ``` | |||
| 2020-01-29 | Re-enable lexical binding | Eivind Fonn | |
| This reverts commit e9391ae769bee189ef6144b8861b117d5c948a80, and removes spurious debug messages. | |||
| 2020-01-28 | Revert "Enable lexical binding" | Eivind Fonn | |
| This reverts commit c6086a7b0b44963071096e3ed7545f617de88915. | |||
| 2020-01-28 | Merge pull request #1240 from xabbu42/feature-ctrl-f-minibuffer | Eivind Fonn | |
| Implement Vim Ctrl-f in minibuffer. | |||
| 2020-01-28 | Fix indentation | Eivind Fonn | |
| 2020-01-28 | Implement Vim Ctrl-f in minibuffer. | Nathan Gass | |
| Open apropriate command windows for Ctrl-f while in minibuffer for an ex command or a search. As all ways to abort a minibuffer do not return and restore the active buffer, we have to set the content of the minibuffer and exit normally to trigger the apropriate action. Also restoring the window configuration is necessary so minibuffer-selected-window is not changed. | |||
| 2020-01-28 | Enable lexical binding | Eivind Fonn | |
| 2020-01-26 | Ex search highlights: use selected window as fallback | Eivind Fonn | |
| In some cases search is triggered not from the minibuffer, in which case minibuffer-selected-window will not accurately capture the window in which search highlights should be created. | |||
| 2020-01-25 | Call delete-backward-char interactively again | Eivind Fonn | |
| Reverts part of 1d6ba80. | |||
| 2020-01-19 | Silence byte compiler about imenu--in-alist | Eivind Fonn | |
| 2020-01-19 | Add support for submenu entries in goto-definition-imenu | Troy Hinckley | |
| Currently evil-goto-definition-imenu will only look in top level entries and ignores everything in a submenu. Unfortunately this means that many definitions that could be found are being skipped. | |||
| 2020-01-17 | Merge pull request #1235 from TheBB/search-pred | Eivind Fonn | |
| Honor isearch filter predicates | |||
| 2020-01-13 | Merge pull request #1249 from emacs-evil/revert-1248-undo-tree-enable | Eivind Fonn | |
| Revert "Enable undo-tree-mode only when evil-mode is turned on" | |||
| 2020-01-13 | Revert "Enable undo-tree-mode only when evil-mode is turned on" | Eivind Fonn | |
| 2020-01-13 | Merge pull request #1248 from TheBB/undo-tree-enable | Eivind Fonn | |
| Enable undo-tree-mode only when evil-mode is turned on | |||
| 2020-01-13 | Update bundled undo-tree for tests | Eivind Fonn | |
| 2020-01-13 | Enable undo-tree-mode only when evil-mode is turned on | Eivind Fonn | |
| 2020-01-13 | Preserve the tab-bar in `evil-read-key' | Miciah Masters | |
| When setting a new global map, the tab-bar entry must be copied to the new map from the old one to avoid hiding the tab bar. * evil-common.el (evil-read-key): Preserve the tab-bar entry from the old global map. | |||
| 2020-01-11 | Fix package-archives in README | Eivind Fonn | |
| 2020-01-03 | Refactor caching/fallback logic of evil-header-line-height | Eivind Fonn | |
| 2020-01-03 | Merge pull request #1238 from sorawee/master | Eivind Fonn | |
| Fix behavior of evil-scroll-up and evil-scroll-down again | |||
| 2020-01-02 | Don't explicitly call isearch-filter-predicate to open folds | Eivind Fonn | |
| This is handled implicitly by search-func now. The variable isearch-filter-predicates was reverted and never saw light of day in an official Emacs release. | |||
| 2020-01-01 | Skip command window tests when run in batch mode | Evgeni Kolev | |
| 2020-01-01 | Add a fallback code | Sorawee Porncharoenwase | |
| 2019-12-31 | Fix behavior of evil-scroll-up and evil-scroll-down again | Sorawee Porncharoenwase | |
| The PR #1154 is supposed to fix the issue about evil-scroll-up and evil-scroll-down. It works nicely in most scenarios. However, when the header line is really tall, evil-header-line-height will give an incorrect result, making the bug that is supposed to be fixed by the mentioned PR reappear again. This PR switches evil-header-line-height to Emacs' built-in window-header-line-height which corrects the mistake. | |||
| 2019-12-31 | Docs: fix use of \\[...] to display key sequences | Eivind Fonn | |
| 2019-12-31 | Respect setting of isearch-filter-predicate | Eivind Fonn | |
| Filtering our matches before passing them to isearch prevents isearch from entering an infinite loop if wrapped search is turned on and all the matches are filtered out. | |||
| 2019-12-31 | Revert "Fix bounds of wrapped search" | Eivind Fonn | |
| This reverts commit e47db185aa3e6a15eba6e34847f0b28aa7055db8. | |||
| 2019-12-30 | Merge pull request #1130 from dzop/preserve-window-parameters | Eivind Fonn | |
| Better integration of window manipulation commands | |||
| 2019-12-30 | Different mode line tags per visual state type | Eivind Fonn | |
| Fix #1180 | |||
| 2019-12-30 | Fix final cursor after shifting | Eivind Fonn | |
| 2019-12-28 | Search highlights: check window liveness | Eivind Fonn | |
| 2019-12-22 | Fix numeric argument for paste commands | Eivind Fonn | |
| This enables use of e.g. C-u p to paste four times. Fixes #1199 | |||
| 2019-12-22 | Don't start git-commit-mode in emacs state | Eivind Fonn | |
| 2019-12-22 | Remove obsolete magit modes | Eivind Fonn | |
| 2019-12-21 | Fix typo | Eivind Fonn | |
| 2019-12-21 | Merge pull request #1227 from TheBB/update-docs | Eivind Fonn | |
| Update docs | |||
| 2019-12-21 | Move FAQ to main documentation | Eivind Fonn | |
| 2019-12-21 | Document leader key functionality | Eivind Fonn | |
