Created
January 27, 2012 14:30
-
-
Save ongaeshi/1689037 to your computer and use it in GitHub Desktop.
Cocoa Emacsでバックスラッシュが上手く入力出来ない対策
This file contains 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
;;-------------------------------------------------------------------------- | |
;; Cocoa Emacsでバックスラッシュが上手く入力出来ない対策 | |
;; | |
;; MacなEmacsでバックスラッシュを簡単に入力したい - Watsonのメモ | |
;; http://d.hatena.ne.jp/Watson/20100207/1265476938 | |
;; | |
;; Carbon Emacs で「\(バックスラッシュ)」を入力する - あいぷらぷら; | |
;; http://d.hatena.ne.jp/june29/20080204/1202119521 | |
;;-------------------------------------------------------------------------- | |
(define-key global-map [?\¥] [?\\]) | |
(define-key global-map [?\C-¥] [?\C-\\]) | |
(define-key global-map [?\M-¥] [?\M-\\]) | |
(define-key global-map [?\C-\M-¥] [?\C-\M-\\]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment