Remap C-h to DEL

This commit is contained in:
Case Duckworth 2021-05-04 17:27:09 -05:00
parent 8927cf5a89
commit 388dc3c704
1 changed files with 6 additions and 1 deletions

View File

@ -556,7 +556,9 @@
w32-pass-apps-to-system nil
w32-apps-modifier 'hyper))
;; "Et cetera" settings
;;; "Et cetera" settings
;; This should stay as /minimal/ as possible. Anything that can go somewhere
;; else /should/ go there.
(setup emacs
(:option disabled-command-function nil
load-prefer-newer t
@ -568,6 +570,9 @@
(:global "M-=" count-words)
;; Remap C-h to DEL -- <f1> can be the "help" key
(define-key key-translation-map [?\C-h] [?\C-?])
(:leader "C-c" save-buffers-kill-emacs
"t" acdw/insert-iso-date))