From d18b21e195be7ea84d39ba2689b4490630d24af1 Mon Sep 17 00:00:00 2001 From: noa@gaiwan.org Date: Sat, 15 Jun 2024 17:15:28 +0000 Subject: Escape always quits --- emacs/init.el | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'emacs/init.el') diff --git a/emacs/init.el b/emacs/init.el index c5da370..e36a9fd 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -877,6 +877,22 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." (global-set-key [remap query-replace] 'anzu-query-replace) (global-set-key [remap query-replace-regexp] 'anzu-query-replace-regexp) + +;;; Escape always quits + +;; Due to emacs's legacy running on terminals, some keys are similar but different. By which i mean, we have ESC and escape, TAB and tab, and RET and return. The capital letters refer to the control sequences terminals represent these keys as: C-[, C-i, and C-m respectively. The lower case words refer to the actual keys. + +;; backspace 127 DEL Ctrl+? +;; tab 9 TAB Ctrl+I +;; linefeed 10 LFD Ctrl+J +;; return 13 RET Ctrl+M +;; escape 27 ESC Ctrl+[ + +(define-key minibuffer-local-map [escape] 'minibuffer-keyboard-quit) +(global-set-key [escape] 'keyboard-quit) +(global-set-key (kbd "C-g") nil) + + ;; Put a quote in the scratch buffer (setopt cookie-file "~/data/quotes") -- cgit 1.4.1-2-gfad0