branch: elpa/evil-lisp-state
commit 563654c8cd2455b478aaf5b2e88dfc720a7e472e
Author: syl20bnr <[email protected]>
Commit: syl20bnr <[email protected]>
Swap back `k` and `K`
---
README.md | 4 ++--
evil-lisp-state.el | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index 68afda18bc..59c9966030 100644
--- a/README.md
+++ b/README.md
@@ -81,8 +81,8 @@ Key Binding | Function
`i` | evil-insert-state
`j` | sp-down-sexp
`J` | sp-backward-down-sexp
-`k` | sp-backward-up-sexp
-`K` | sp-up-sexp
+`k` | sp-up-sexp
+`K` | sp-backward-up-sexp
`l` | sp-forward-sexp
`L` | sp-forward-symbol
`m` | sp-join-sexp (think about `merge-sexp`)
diff --git a/evil-lisp-state.el b/evil-lisp-state.el
index 2ec355ff4b..910f6e668b 100644
--- a/evil-lisp-state.el
+++ b/evil-lisp-state.el
@@ -110,8 +110,8 @@ of COMMAND.
(define-key evil-lisp-state-map "H" 'sp-backward-symbol)
(define-key evil-lisp-state-map "j" 'sp-down-sexp)
(define-key evil-lisp-state-map "J" 'sp-backward-down-sexp)
-(define-key evil-lisp-state-map "K" 'sp-up-sexp)
-(define-key evil-lisp-state-map "k" 'sp-backward-up-sexp)
+(define-key evil-lisp-state-map "k" 'sp-up-sexp)
+(define-key evil-lisp-state-map "K" 'sp-backward-up-sexp)
(define-key evil-lisp-state-map "l" 'sp-forward-sexp)
(define-key evil-lisp-state-map "L" 'sp-forward-symbol)
(define-key evil-lisp-state-map "m" 'sp-join-sexp)