branch: elpa/evil-lisp-state
commit 6c4187716187ad99e9d795650e4547dfa8fd416f
Author: syl20bnr <[email protected]>
Commit: syl20bnr <[email protected]>
Add evil-delete-line with key binding `D`
Version 1.5.1
---
evil-lisp-state.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/evil-lisp-state.el b/evil-lisp-state.el
index ccc24ce0e0..00b2697b82 100644
--- a/evil-lisp-state.el
+++ b/evil-lisp-state.el
@@ -5,7 +5,7 @@
;; Author: Sylvain Benner <[email protected]>
;; Keywords: convenience editing evil smartparens lisp mnemonic
;; Created: 9 Oct 2014
-;; Version: 1.5
+;; Version: 1.5.1
;; Package-Requires: ((evil "1.0.9") (smartparens "1.6.1") (expand-region
"0.10.0"))
;; URL: https://github.com/syl20bnr/evil-lisp-state
@@ -102,6 +102,7 @@ of COMMAND.
(evil-lisp-state-define-key "dx" kill-sexp t)
(evil-lisp-state-define-key "ds" kill-symbol t)
(evil-lisp-state-define-key "dw" kill-word t)
+(define-key evil-lisp-state-map "D" 'evil-delete-line)
(define-key evil-lisp-state-map "e$" 'evil-lisp-state-eval-sexp-end-of-line)
(define-key evil-lisp-state-map "ef" 'eval-defun)
(define-key evil-lisp-state-map "el" 'eval-last-sexp)