branch: elpa/evil-lisp-state
commit 483e20ff971c26de74e0c56d6036196460886092
Author: syl20bnr <[email protected]>
Commit: syl20bnr <[email protected]>
Regular evil `o` and `O` command
---
README.md | 4 ++--
evil-lisp-state.el | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index d61f1c11b0..a3be494dbd 100644
--- a/README.md
+++ b/README.md
@@ -131,8 +131,8 @@ Key Binding | Function
`l` | next char
`L` | next sexp of the same level
`m` | sp-join-sexp (think about `merge-sexp`)
-`o` | insert sexp after on the same level and switch to `insert
state`
-`O` | insert sexp before on the same level and switch to `insert
state`
+`o` | evil-insert-below
+`O` | evil-insert-above
`p` | evil-past-after
`P` | evil-past-before
`r` | sp-raise-sexp
diff --git a/evil-lisp-state.el b/evil-lisp-state.el
index 3c2a8af5d7..523666b953 100644
--- a/evil-lisp-state.el
+++ b/evil-lisp-state.el
@@ -128,8 +128,8 @@ of COMMAND.
(define-key evil-lisp-state-map (kbd "C-l") 'evil-lisp-state-forward-symbol)
(define-key evil-lisp-state-map "L" 'sp-next-sexp)
(define-key evil-lisp-state-map "m" 'sp-join-sexp)
-(define-key evil-lisp-state-map "o" 'evil-lisp-state-insert-sexp-after)
-(define-key evil-lisp-state-map "O" 'evil-lisp-state-insert-sexp-before)
+(define-key evil-lisp-state-map "o" 'evil-open-below)
+(define-key evil-lisp-state-map "O" 'evil-open-above)
(define-key evil-lisp-state-map "p" 'evil-paste-after)
(define-key evil-lisp-state-map "P" 'evil-paste-before)
(define-key evil-lisp-state-map "r" 'sp-raise-sexp)