summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-05-04 17:27:09 -0500
committerCase Duckworth2021-05-04 17:27:09 -0500
commit388dc3c704e738f36153e49cfc8697153973368a (patch)
treee4c6cde52d76a4262dc792f3d467363059be4d39 /init.el
parentMake sure gnus uploads all data to the cloud before burying buffer (diff)
downloademacs-388dc3c704e738f36153e49cfc8697153973368a.tar.gz
emacs-388dc3c704e738f36153e49cfc8697153973368a.zip
Remap C-h to DEL
Diffstat (limited to 'init.el')
-rw-r--r--init.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/init.el b/init.el index e38a135..f520e02 100644 --- a/init.el +++ b/init.el
@@ -556,7 +556,9 @@
556 w32-pass-apps-to-system nil 556 w32-pass-apps-to-system nil
557 w32-apps-modifier 'hyper)) 557 w32-apps-modifier 'hyper))
558 558
559;; "Et cetera" settings 559;;; "Et cetera" settings
560;; This should stay as /minimal/ as possible. Anything that can go somewhere
561;; else /should/ go there.
560(setup emacs 562(setup emacs
561 (:option disabled-command-function nil 563 (:option disabled-command-function nil
562 load-prefer-newer t 564 load-prefer-newer t
@@ -568,6 +570,9 @@
568 570
569 (:global "M-=" count-words) 571 (:global "M-=" count-words)
570 572
573 ;; Remap C-h to DEL -- <f1> can be the "help" key
574 (define-key key-translation-map [?\C-h] [?\C-?])
575
571 (:leader "C-c" save-buffers-kill-emacs 576 (:leader "C-c" save-buffers-kill-emacs
572 "t" acdw/insert-iso-date)) 577 "t" acdw/insert-iso-date))
573 578