aboutsummaryrefslogtreecommitdiff
path: root/evil-maps.el
AgeCommit message (Collapse)Author
2017-10-02update version to 1.2.131.2.13Eivind Fonn
2017-08-01Map <C-w> q to evil-quitBenjamin Ludwig
fix #887
2017-05-31Add support for passing REGISTER and COUNT to :yankEvgeni Kolev
2017-04-29Add support for passing REGISTER and COUNT to :deleteEvgeni Kolev
2017-03-23Implement ]s and [sVasilij Schneidermann
Closes #718
2017-03-23Add support for passing COUNT and BANG to :joinEvgeni Kolev
2017-03-23Look up bound key status correctlyVasilij Schneidermann
2016-04-16Implement `:delmarks` command (re #658)Frank Fischer
2016-04-05Merge stableFrank Fischer
2016-04-05update version to 1.2.121.2.12Frank Fischer
2016-03-15Implement `:cquit` command (close #638)Frank Fischer
2016-03-11Implements vim's :enew commandRodrigo Setti
See http://vimdoc.sourceforge.net/htmldoc/editing.html#:enew
2016-03-07Merge with stableFrank Fischer
2016-03-07update version to 1.2.111.2.11Frank Fischer
2016-01-18Merge stableFrank Fischer
2016-01-18update version to 1.2.101.2.10Frank Fischer
2016-01-16Merge stableFrank Fischer
2016-01-11update version to 1.2.91.2.9Frank Fischer
2016-01-05Merge PR #27Frank Fischer
2016-01-05Merge stableFrank Fischer
2016-01-05Make `:bwipeout` and alias for `:bdelete` (fix #598)Frank Fischer
2015-12-08maps: Use defcustom :set for setting up optional insert state bindingsJustin Burkett
Remove evil-add-insert-state-bindings and evil-remove-insert-state-bindings functions in favor of an update version that handles both cases and can be used directly in the defcustom for evil-disable-insert-state-bindings.
2015-12-03maps: Make insert-state bindings "optional"Justin Burkett
The variable evil-insert-state-bindings holds all insert-state bindings except ones for <delete>, <escape>, and evil-toggle-key. The variable evil-disable-insert-state-bindings prevents the bindings from being bound when evil is loaded. New functions evil-add-insert-state-bindings and evil-remove-insert-state-bindings add or remove these bindings as long as they don't conflict with other changes made by the user. The motivation is that some users might prefer Emacs bindings in insert state over the vim ones, and this makes it easy to accomplish that goal.
2015-11-09update version to 1.2.81.2.8Frank Fischer
2015-11-08Merge stableFrank Fischer
2015-11-02update version to 1.2.71.2.7Frank Fischer
2015-10-26Merge stableFrank Fischer
2015-10-26update version to 1.2.61.2.6Frank Fischer
2015-09-28Merge stableFrank Fischer
2015-09-28update version to 1.2.51.2.5Frank Fischer
2015-09-15Bind `y` and `Y` in motion state (fix #575)Frank Fischer
2015-09-13update version to 1.2.41.2.4Frank Fischer
2015-08-16update version to 1.2.31.2.3Frank Fischer
2015-08-09implement paste last insertion command (fix #554)Vasilij Schneidermann
2015-08-09update version to 1.2.21.2.2Frank Fischer
2015-07-04update version to 1.2.11.2.1Frank Fischer
2015-07-04update version to 1.2.01.2.0Frank Fischer
2015-07-03C-n and C-p move through search historyGordon Gustafson
They only work in the evil-search search module (evil-ex-search). It is possible to add these bindings to the isearch search module, but emulating vim search isn't its job.
2015-06-15add bindings for `<insert>` in normal state (fix #528)Frank Fischer
These bindings enter insert state from normal state. Furthermore, they do nothing in visual state. Because visual state inherits the normal state bindings, we have to disable them explicitly.
2015-06-04remove C-h/j/k/l bindings from window map (fix #524)Frank Fischer
The binding C-h should never be overwritten in Emacs, because it shows the help page for existing key bindings, so we remove it and its friends. The regular bindings without C- prefix remain.
2015-05-11update version to 1.1.61.1.6Frank Fischer
2015-05-10update version to 1.1.51.1.5Frank Fischer
2015-05-03update version to 1.1.41.1.4Frank Fischer
2015-04-26update version to 1.1.3Frank Fischer
2015-04-23replace (kbd "DEL") by `deletechar` (fix #516)Frank Fischer
Several keys are ultimately remapped to `deletechar`, so this is the correct symbol to use.
2015-04-20Implement Vim's C-v in insert stateSebastian Schwarz
2015-04-20mergeFrank Fischer
2015-04-20update version to 1.1.2Frank Fischer
2015-04-20bind <DEL> to `evil-delete-char` (fix #516)Frank Fischer
2015-04-18bind `:resize` to `evil-ex-resize` (fix #515)Frank Fischer