Skip to content

Instantly share code, notes, and snippets.

@rwest
Created February 16, 2010 17:29
Show Gist options
  • Save rwest/305712 to your computer and use it in GitHub Desktop.
Save rwest/305712 to your computer and use it in GitHub Desktop.
put this in .emacs to get backspace working
;; sort out backspace in .emacs on monch
(keyboard-translate ?\C-h ?\C-?)
(keyboard-translate ?\C-? ?\C-h)
(global-set-key "\C-h" 'delete-backward-char)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment