branch: elpa/evil-lisp-state
commit 176ebd50e865b30f05fecb7f1d70ef23f349c8a6
Author: syl20bnr <[email protected]>
Commit: syl20bnr <[email protected]>
Change key binding `xs` to `xx` for consistency
---
README.md | 2 +-
evil-lisp-state.el | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index b7a6cc79a5..9b78ef7489 100644
--- a/README.md
+++ b/README.md
@@ -152,7 +152,7 @@ Key Binding | Function
`x$` | evil-lisp-state-eval-sexp-end-of-line
`xf` | eval-defun
`xl` | eval-last-sexp
-`xs` | eval-sexp
+`xx` | eval-sexp
`y` | sp-copy-sexp
`<tab>y` | sp-backward-copy-sexp
`backspace` | sp-backward-delete-char
diff --git a/evil-lisp-state.el b/evil-lisp-state.el
index 940f79250b..3aff484d31 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: 2.0
+;; Version: 2.0.1
;; Package-Requires: ((evil "1.0.9") (smartparens "1.6.1") (expand-region
"0.10.0"))
;; URL: https://github.com/syl20bnr/evil-lisp-state
@@ -145,7 +145,7 @@ of COMMAND.
(define-key evil-lisp-state-map "x$" 'evil-lisp-state-eval-sexp-end-of-line)
(define-key evil-lisp-state-map "xf" 'eval-defun)
(define-key evil-lisp-state-map "xl" 'eval-last-sexp)
-(define-key evil-lisp-state-map "xs" 'eval-sexp)
+(define-key evil-lisp-state-map "xx" 'eval-sexp)
(evil-lisp-state-define-key "y" copy-sexp t)
(define-key evil-lisp-state-map (kbd "<S-tab>") 'evil-lisp-state-previous-sexp)
(define-key evil-lisp-state-map (kbd "<backspace>") 'sp-backward-delete-char)