Created
August 30, 2009 12:17
-
-
Save bradwright/177949 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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