Skip to content

Instantly share code, notes, and snippets.

@bradwright
Created August 30, 2009 12:17
Show Gist options
  • Save bradwright/177949 to your computer and use it in GitHub Desktop.
Save bradwright/177949 to your computer and use it in GitHub Desktop.
;; This gets around Emacs 23.1 for OS X clobbering the Alt key on a UK keyboard
(global-set-key (kbd "M-3") 'insert-hash)
(defun insert-hash ()
(interactive)
(insert "#"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment