aboutsummaryrefslogtreecommitdiff
path: root/evil-digraphs.el
AgeCommit message (Collapse)Author
2023-07-09Autoload evil-digraphAxel Forsman
2022-09-28Bring evil-digraphs up to date with vimTom Dalziel
2022-04-25Bump version to 1.15.0Tom Dalziel
2020-03-04Bump version to 1.14.01.14.0Eivind Fonn
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-28Enable lexical bindingEivind Fonn
2019-12-18Bump version to 1.13.0Eivind Fonn
Version 1.2.15 was accidentally tagged as 1.12.15, and released as such by MELPA Stable, so now I guess we have to run with it.
2019-12-11Bump version to 1.3.0-snapshotEivind Fonn
2019-12-11Bump version to 1.2.151.2.15Eivind Fonn
2019-01-04Bump version to 1.2.141.2.14Eivind Fonn
2017-10-02update version to 1.2.131.2.13Eivind Fonn
2016-04-05update version to 1.2.121.2.12Frank Fischer
2016-03-07update version to 1.2.111.2.11Frank Fischer
2016-01-18update version to 1.2.101.2.10Frank Fischer
2016-01-11update version to 1.2.91.2.9Frank Fischer
2015-11-09update version to 1.2.81.2.8Frank Fischer
2015-11-02update version to 1.2.71.2.7Frank Fischer
2015-10-26update version to 1.2.61.2.6Frank Fischer
2015-09-28update version to 1.2.51.2.5Frank 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-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-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-20update version to 1.1.2Frank Fischer
2015-04-11update version to 1.1.11.1.1Frank Fischer
2015-04-08update version to 1.1.01.1.0Frank Fischer
2015-04-08add `evilupdate.el` scriptFrank Fischer
2014-04-11version 1.0.91.0.9Frank Fischer
2013-11-26Version 1.0.81.0.8Frank Fischer
2013-08-02Bump version to 1.0.71.0.7Frank Fischer
2013-07-06Bump version to 1.0.61.0.6Frank Fischer
2013-06-07Bump version to 1.0.51.0.5Frank Fischer
2013-06-07Bump version to 1.0.41.0.4Frank Fischer
2013-05-23Bump version to 1.0.31.0.3Frank Fischer
2013-05-20Bump version to 1.0.21.0.2Frank Fischer
2013-02-27Bump version to 1.0.11.0.1Frank Fischer
2013-02-16Change version tags to 1.0-devFrank Fischer
2013-02-04Bump version to 1.0.0.1.0.0Frank Fischer
2013-01-18Add version comments to all files.Frank Fischer
2012-07-30Add GPL 3 license information to all source filesFrank Fischer
The headers of all source files are updated to be more standard conform and include the license information. Furthermore the license is put in the COPYING file.
2012-02-04Fix usage of `evil-echo' and `evil-ex-echo'Vegard Øye
Since `format' et al. interpret "%" characters as format specifications, one should never pass an arbitrary string as the first argument of such functions. Instead, pass "%s" as the first argument and the string as the second: (format "%s" ARBITRARY-STRING) Thus, this commit replaces (evil-echo ARBITRARY-STRING) with (evil-echo "%s" ARBITRARY-STRING), and so on.
2011-12-23Add missing digraphsVegard Øye
Add digraphs listed by Vim's :digraph command, but not mentioned in the digraphs.txt help file.
2011-11-26Restructure the codeVegard Øye
Merge evil-motions.el, evil-operators.el and evil-window.el into evil-commands.el. Merge evil-insert.el, evil-visual.el and evil-replace.el into evil-states.el. Merge evil-interactive.el and evil-types.el into evil-types.el. Merge evil-compatibility.el and evil-undo.el into evil-common.el. Move macros into evil-macros.el.
2011-06-12Use `alist' widget type for `evil-digraphs-table-user'Vegard Øye
Also make Custom mode come up in Emacs state.