From aed214e4eb0aa63121072ac8fc6b0c12feff350d Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Tue, 10 Feb 2026 09:57:55 -0800 Subject: [PATCH] Key chording in Evil to make getting to normal mode easier --- ha-evil.org | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ha-evil.org b/ha-evil.org index eae9cfd..5abb154 100644 --- a/ha-evil.org +++ b/ha-evil.org @@ -54,9 +54,7 @@ I split the configuration of Evil mode into sections. First, global settings: evil-want-keybinding nil ; work with evil-collection evil-want-integration t evil-want-C-u-scroll nil - evil-want-C-i-jump nil - evil-escape-key-sequence "jk" - evil-escape-unordered-key-sequence t)) + evil-want-C-i-jump nil)) #+end_src The Escape key act like ~C-g~ and always go back to normal mode? @@ -199,7 +197,7 @@ I find that myself not noticing I’m in /insert/ mode, and start typing =j= rep To remedy this, I’m using the [[https://www.emacswiki.org/emacs/KeyChord][KeyChord]] code: -#+BEGIN_SRC emacs-lisp :tangle no +#+BEGIN_SRC emacs-lisp (use-package key-chord :config (setq key-chord-two-keys-delay 0.1)