emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/evil-lisp-state 67ee83c135 074/125: Regular `y` evil comma


From: ELPA Syncer
Subject: [nongnu] elpa/evil-lisp-state 67ee83c135 074/125: Regular `y` evil command and sp-copy-sexp binding is now `Y`
Date: Thu, 6 Jan 2022 04:58:42 -0500 (EST)

branch: elpa/evil-lisp-state
commit 67ee83c1354aabcaf91f3462794b018c2e569073
Author: syl20bnr <sylvain.benner@gmail.com>
Commit: syl20bnr <sylvain.benner@gmail.com>

    Regular `y` evil command and sp-copy-sexp binding is now `Y`
---
 README.md          | 3 ++-
 evil-lisp-state.el | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index a3be494dbd..45f34f1849 100644
--- a/README.md
+++ b/README.md
@@ -153,7 +153,8 @@ Key Binding   | Function
 `xf`          | eval-defun
 `xl`          | eval-last-sexp
 `xx`          | eval-sexp
-`y`           | sp-copy-sexp
+`y`           | evil-yank
+`Y`           | sp-copy-sexp
 `<tab>y`      | sp-backward-copy-sexp
 `backspace`   | sp-backward-delete-char
 `S-backspace` | sp-delete-char
diff --git a/evil-lisp-state.el b/evil-lisp-state.el
index 523666b953..1f464f4fd6 100644
--- a/evil-lisp-state.el
+++ b/evil-lisp-state.el
@@ -147,7 +147,8 @@ of COMMAND.
 (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 "xx"  'eval-sexp)
-(evil-lisp-state-define-key     "y"    copy-sexp t)
+(define-key evil-lisp-state-map "y"   'evil-yank)
+(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)
 (define-key evil-lisp-state-map (kbd "<S-backspace>") 'sp-delete-char)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]