summary refs log tree commit diff
path: root/emacs/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el15
1 files changed, 0 insertions, 15 deletions
diff --git a/emacs/init.el b/emacs/init.el
index efe2040..71e8aef 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -975,21 +975,6 @@ The misspelled word is taken from OVERLAY.  WORD is the corrected word."
            " "
            (shell-quote-argument url))))
 
-;;; 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")