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

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

[nongnu] elpa/evil ebae353: <insert> in replace state should append, no


From: ELPA Syncer
Subject: [nongnu] elpa/evil ebae353: <insert> in replace state should append, not insert (#1527)
Date: Wed, 6 Oct 2021 12:57:30 -0400 (EDT)

branch: elpa/evil
commit ebae35360c9be4828b7a9069396bd6a5ef3e9fdf
Author: Tom Dalziel <33435574+tomdl89@users.noreply.github.com>
Commit: GitHub <noreply@github.com>

    <insert> in replace state should append, not insert (#1527)
---
 evil-maps.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/evil-maps.el b/evil-maps.el
index c21cc6e..11325c0 100644
--- a/evil-maps.el
+++ b/evil-maps.el
@@ -439,7 +439,7 @@ included in `evil-insert-state-bindings' by default."
 
 (define-key evil-replace-state-map (kbd "DEL") 'evil-replace-backspace)
 (define-key evil-replace-state-map [escape] 'evil-normal-state)
-(define-key evil-replace-state-map [insert] 'evil-insert)
+(define-key evil-replace-state-map [insert] 'evil-append)
 
 ;;; Emacs state
 



reply via email to

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