Mercurial > dotfiles
diff .emacs @ 14:34fd1e79495b
Fix for backspace being broken in some terminal emulators.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 03 Dec 2008 10:56:22 -0600 |
parents | d4d720c4c416 |
children | b5d75594b356 |
line wrap: on
line diff
--- a/.emacs +++ b/.emacs @@ -118,3 +118,5 @@ point." (global-set-key [(meta s)] 'save-buffer) ; Typing tab is for lesser editors, make hitting return do that (global-set-key "\C-m" 'newline-and-indent) +; Sometimes C-h is what Backspace sends in a terminal, and I never use C-h +(global-set-key "\C-h" 'backward-delete-char-untabify)