summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-05-12 16:42:18 -0500
committerCase Duckworth2021-05-12 16:42:18 -0500
commit92ff615f9cb6a501cef2ca95f35abd20a70d2f28 (patch)
treea9e112c164914077fae1656e370b5eff6d67d678 /init.el
parentMake recentf dired-aware (diff)
downloademacs-92ff615f9cb6a501cef2ca95f35abd20a70d2f28.tar.gz
emacs-92ff615f9cb6a501cef2ca95f35abd20a70d2f28.zip
Unbind <Help> h
Diffstat (limited to 'init.el')
-rw-r--r--init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/init.el b/init.el index 9d2fa33..b8951a0 100644 --- a/init.el +++ b/init.el
@@ -624,7 +624,9 @@
624 find-function-C-source-directory (acdw/find-emacs-source)) 624 find-function-C-source-directory (acdw/find-emacs-source))
625 625
626 (:global "M-=" count-words 626 (:global "M-=" count-words
627 "C-w" kill-region-or-backward-word) 627 "C-w" kill-region-or-backward-word
628 "<help> h" nil ; HELLO takes a long time to load on Windows
629 )
628 630
629 ;; Remap C-h to DEL -- <f1> can be the "help" key 631 ;; Remap C-h to DEL -- <f1> can be the "help" key
630 (define-key key-translation-map [?\C-h] [?\C-?]) 632 (define-key key-translation-map [?\C-h] [?\C-?])