diff options
author | Case Duckworth | 2021-05-12 16:42:18 -0500 |
---|---|---|
committer | Case Duckworth | 2021-05-12 16:42:18 -0500 |
commit | 92ff615f9cb6a501cef2ca95f35abd20a70d2f28 (patch) | |
tree | a9e112c164914077fae1656e370b5eff6d67d678 | |
parent | Make recentf dired-aware (diff) | |
download | emacs-92ff615f9cb6a501cef2ca95f35abd20a70d2f28.tar.gz emacs-92ff615f9cb6a501cef2ca95f35abd20a70d2f28.zip |
Unbind <Help> h
-rw-r--r-- | init.el | 4 |
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-?]) |