aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-03-04Bump version to 1.14.01.14.0Eivind Fonn
2020-03-04Docs: handle default values that must be evaluatedEivind Fonn
Also regenerate
2020-03-03fix `wrong number of argument error` in evil-ex-command-windowYiming 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-02Ignore &rest keyword in evil-define-commandpanda
2020-02-24fix evil-define-state :exit-hook typosergey
2020-02-22Deprecate evil-add-to-alist, which doesn't work with lexicalEivind Fonn
2020-02-22Makefile: add 'info' targetJon Miller
Useful to have a specific info target when some Emacs package installers expect this target (such as el-get).
2020-02-22Spelling fixIsak Johansson
I found a spelling error while reading through the documentation.
2020-02-22Correct typo (COMPOUNT->COMPOUND) in symbol name in window server selection ↵bassettmb
data-type list.
2020-02-03Clean up compilation warnings from lexical bindingEivind Fonn
2020-01-30Change the way to get universal argumentBet4
2020-01-30Extract evil-append-register functionIvan 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-29Re-enable lexical bindingEivind Fonn
This reverts commit e9391ae769bee189ef6144b8861b117d5c948a80, and removes spurious debug messages.
2020-01-28Revert "Enable lexical binding"Eivind Fonn
This reverts commit c6086a7b0b44963071096e3ed7545f617de88915.
2020-01-28Merge pull request #1240 from xabbu42/feature-ctrl-f-minibufferEivind Fonn
Implement Vim Ctrl-f in minibuffer.
2020-01-28Fix indentationEivind Fonn
2020-01-28Implement 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-28Enable lexical bindingEivind Fonn
2020-01-26Ex search highlights: use selected window as fallbackEivind 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-25Call delete-backward-char interactively againEivind Fonn
Reverts part of 1d6ba80.
2020-01-19Silence byte compiler about imenu--in-alistEivind Fonn
2020-01-19Add support for submenu entries in goto-definition-imenuTroy 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-17Merge pull request #1235 from TheBB/search-predEivind Fonn
Honor isearch filter predicates
2020-01-13Merge pull request #1249 from emacs-evil/revert-1248-undo-tree-enableEivind Fonn
Revert "Enable undo-tree-mode only when evil-mode is turned on"
2020-01-13Revert "Enable undo-tree-mode only when evil-mode is turned on"Eivind Fonn
2020-01-13Merge pull request #1248 from TheBB/undo-tree-enableEivind Fonn
Enable undo-tree-mode only when evil-mode is turned on
2020-01-13Update bundled undo-tree for testsEivind Fonn
2020-01-13Enable undo-tree-mode only when evil-mode is turned onEivind Fonn
2020-01-13Preserve 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-11Fix package-archives in READMEEivind Fonn
2020-01-03Refactor caching/fallback logic of evil-header-line-heightEivind Fonn
2020-01-03Merge pull request #1238 from sorawee/masterEivind Fonn
Fix behavior of evil-scroll-up and evil-scroll-down again
2020-01-02Don't explicitly call isearch-filter-predicate to open foldsEivind 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-01Skip command window tests when run in batch modeEvgeni Kolev
2020-01-01Add a fallback codeSorawee Porncharoenwase
2019-12-31Fix behavior of evil-scroll-up and evil-scroll-down againSorawee 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-31Docs: fix use of \\[...] to display key sequencesEivind Fonn
2019-12-31Respect setting of isearch-filter-predicateEivind 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-31Revert "Fix bounds of wrapped search"Eivind Fonn
This reverts commit e47db185aa3e6a15eba6e34847f0b28aa7055db8.
2019-12-30Merge pull request #1130 from dzop/preserve-window-parametersEivind Fonn
Better integration of window manipulation commands
2019-12-30Different mode line tags per visual state typeEivind Fonn
Fix #1180
2019-12-30Fix final cursor after shiftingEivind Fonn
2019-12-28Search highlights: check window livenessEivind Fonn
2019-12-22Fix numeric argument for paste commandsEivind Fonn
This enables use of e.g. C-u p to paste four times. Fixes #1199
2019-12-22Don't start git-commit-mode in emacs stateEivind Fonn
2019-12-22Remove obsolete magit modesEivind Fonn
2019-12-21Fix typoEivind Fonn
2019-12-21Merge pull request #1227 from TheBB/update-docsEivind Fonn
Update docs
2019-12-21Move FAQ to main documentationEivind Fonn
2019-12-21Document leader key functionalityEivind Fonn