From 3529c87b2d84ac3493a24c7f6bee5f964323a14f Mon Sep 17 00:00:00 2001 From: Bryan Richter Date: Thu, 26 Sep 2024 10:16:52 +0300 Subject: [PATCH] Add hint for unidirectional ESC As discussed in #150 --- .github/README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/README.md b/.github/README.md index 1773647..871424c 100644 --- a/.github/README.md +++ b/.github/README.md @@ -264,11 +264,18 @@ mapping that calls `org-self-insert-command` in `org-mode`: ## Useful key bindings -The following key bindings are popular: +For vim refugees, consider using `i` and `` to toggle god-mode off and +on: ```emacs-lisp -(define-key god-local-mode-map (kbd "z") #'repeat) (define-key god-local-mode-map (kbd "i") #'god-local-mode) +(global-set-key (kbd "") #'(lambda () (interactive) (god-local-mode 1))) +``` + +The following key binding is also popular: + +```emacs-lisp +(define-key god-local-mode-map (kbd "z") #'repeat) ``` Although I personally prefer: