branch: elpa/evil-lisp-state
commit cbe505d26d4ec85ff3cd5bbcf5b56ebc0a87d367
Author: sbenner <[email protected]>
Commit: sbenner <[email protected]>
Add sp-comment key binding `C`
---
README.md | 3 ++-
evil-lisp-state.el | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 6c1a4e1a0c..7301e0b7ac 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,7 @@ Key Binding | Function
`bh` | sp-backward-barf-sexp
`bl` | sp-forward-barf-sexp
`c` | sp-convolute-sexp
+`C` | sp-comment
`dd` | sp-kill-hybrid-sexp
`ds` | sp-kill-symbol
`dw` | sp-kill-word
@@ -51,7 +52,7 @@ Key Binding | Function
`k` | sp-up-sexp
`K` | sp-backward-up-sexp
`l` | sp-forward-sexp
-`r` | sp-raise-sexp
+`r` | sp-raise-sexp (same as `ska`)
`C-r` | undo-tree-redo
`ska` | sp-splice-sexp-killing-around
`skh` | sp-splice-sexp-killing-backward
diff --git a/evil-lisp-state.el b/evil-lisp-state.el
index 5e7f8ba216..a315488cf8 100644
--- a/evil-lisp-state.el
+++ b/evil-lisp-state.el
@@ -66,6 +66,7 @@
(define-key evil-lisp-state-map "bh" 'sp-backward-barf-sexp)
(define-key evil-lisp-state-map "bl" 'sp-forward-barf-sexp)
(define-key evil-lisp-state-map "c" 'sp-convolute-sexp)
+(define-key evil-lisp-state-map "C" 'sp-comment)
(define-key evil-lisp-state-map "dd" 'sp-kill-hybrid-sexp)
(define-key evil-lisp-state-map "ds" 'sp-kill-symbol)
(define-key evil-lisp-state-map "dw" 'sp-kill-word)