aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--evil-command-window.el2
-rw-r--r--evil-commands.el7
-rw-r--r--evil-common.el2
-rw-r--r--evil-core.el2
-rw-r--r--evil-digraphs.el2
-rw-r--r--evil-ex.el2
-rw-r--r--evil-integration.el2
-rw-r--r--evil-macros.el2
-rw-r--r--evil-maps.el3
-rw-r--r--evil-pkg.el2
-rw-r--r--evil-repeat.el2
-rw-r--r--evil-search.el2
-rw-r--r--evil-states.el2
-rw-r--r--evil-tests.el2
-rw-r--r--evil-types.el2
-rw-r--r--evil-vars.el4
-rw-r--r--evil.el2
17 files changed, 24 insertions, 18 deletions
diff --git a/evil-command-window.el b/evil-command-window.el
index e16c0ec..767cbd8 100644
--- a/evil-command-window.el
+++ b/evil-command-window.el
@@ -2,7 +2,7 @@
;; Author: Emanuel Evans <emanuel.evans at gmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-commands.el b/evil-commands.el
index 08b60c7..ea0c174 100644
--- a/evil-commands.el
+++ b/evil-commands.el
@@ -2,7 +2,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
@@ -1825,6 +1825,11 @@ The return value is the yanked text."
;; go to end of pasted text
(forward-char)))
+(defun evil-paste-last-insertion ()
+ "Paste last insertion."
+ (interactive)
+ (evil-paste-from-register ?.))
+
(evil-define-command evil-use-register (register)
"Use REGISTER for the next command."
:keep-visual t
diff --git a/evil-common.el b/evil-common.el
index 528f54c..457e8a1 100644
--- a/evil-common.el
+++ b/evil-common.el
@@ -2,7 +2,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-core.el b/evil-core.el
index 7d5c688..3a0717b 100644
--- a/evil-core.el
+++ b/evil-core.el
@@ -2,7 +2,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-digraphs.el b/evil-digraphs.el
index 44d047b..ebffe4c 100644
--- a/evil-digraphs.el
+++ b/evil-digraphs.el
@@ -3,7 +3,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-ex.el b/evil-ex.el
index 184bd53..a1976ef 100644
--- a/evil-ex.el
+++ b/evil-ex.el
@@ -3,7 +3,7 @@
;; Author: Frank Fischer <frank fischer at mathematik.tu-chemnitz.de>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-integration.el b/evil-integration.el
index 67dbcfb..a9776ea 100644
--- a/evil-integration.el
+++ b/evil-integration.el
@@ -3,7 +3,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-macros.el b/evil-macros.el
index 793c986..969e685 100644
--- a/evil-macros.el
+++ b/evil-macros.el
@@ -3,7 +3,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-maps.el b/evil-maps.el
index 1102ee2..3f95894 100644
--- a/evil-maps.el
+++ b/evil-maps.el
@@ -3,7 +3,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
@@ -360,6 +360,7 @@
(define-key evil-insert-state-map "\C-x\C-p" 'evil-complete-previous-line)
(define-key evil-insert-state-map "\C-t" 'evil-shift-right-line)
(define-key evil-insert-state-map "\C-d" 'evil-shift-left-line)
+(define-key evil-insert-state-map "\C-a" 'evil-paste-last-insertion)
(define-key evil-insert-state-map [remap delete-backward-char] 'evil-delete-backward-char-and-join)
(define-key evil-insert-state-map [delete] 'delete-char)
(define-key evil-insert-state-map [escape] 'evil-normal-state)
diff --git a/evil-pkg.el b/evil-pkg.el
index 6f1cd7d..d669139 100644
--- a/evil-pkg.el
+++ b/evil-pkg.el
@@ -1,6 +1,6 @@
(define-package
"evil"
- "1.2.1"
+ "1.2.2"
"Extensible Vi layer for Emacs."
'((undo-tree "0.6.3")
(goto-chg "1.6")))
diff --git a/evil-repeat.el b/evil-repeat.el
index ff1aa56..339d3fe 100644
--- a/evil-repeat.el
+++ b/evil-repeat.el
@@ -3,7 +3,7 @@
;; Author: Frank Fischer <frank.fischer at mathematik.tu-chemnitz.de>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-search.el b/evil-search.el
index c8e25c8..37455b6 100644
--- a/evil-search.el
+++ b/evil-search.el
@@ -3,7 +3,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-states.el b/evil-states.el
index d5a0f22..b47c9ff 100644
--- a/evil-states.el
+++ b/evil-states.el
@@ -3,7 +3,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-tests.el b/evil-tests.el
index 3533f19..c98305a 100644
--- a/evil-tests.el
+++ b/evil-tests.el
@@ -3,7 +3,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-types.el b/evil-types.el
index 19afe7b..82195f7 100644
--- a/evil-types.el
+++ b/evil-types.el
@@ -3,7 +3,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
diff --git a/evil-vars.el b/evil-vars.el
index c8482bd..96e322b 100644
--- a/evil-vars.el
+++ b/evil-vars.el
@@ -3,7 +3,7 @@
;; Author: Vegard Øye <vegard_oye at hotmail.com>
;; Maintainer: Vegard Øye <vegard_oye at hotmail.com>
-;; Version: 1.2.1
+;; Version: 1.2.2
;;
;; This file is NOT part of GNU Emacs.
@@ -1705,7 +1705,7 @@ Otherwise the previous command is assumed as substitute.")
(goto-char (point-min))
(buffer-substring (point-min) (line-end-position)))
;; no repo, use plain version
- (t "1.2.1")))))
+ (t "1.2.2")))))
"The current version of Evil")
(defun evil-version ()
diff --git a/evil.el b/evil.el
index e221602..2ba48e8 100644
--- a/evil.el
+++ b/evil.el
@@ -45,7 +45,7 @@
;; To get in touch, please use the bug tracker or the
;; mailing list (see below).
;; Created: 2011-03-01
-;; Version: 1.2.1
+;; Version: 1.2.2
;; Keywords: emulation, vim
;; URL: http://gitorious.org/evil
;; Repository: git://gitorious.org/evil/evil.git