Skip to content

Instantly share code, notes, and snippets.

@ongaeshi
Created January 27, 2012 14:30
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ongaeshi/1689037 to your computer and use it in GitHub Desktop.
Save ongaeshi/1689037 to your computer and use it in GitHub Desktop.
Cocoa Emacsでバックスラッシュが上手く入力出来ない対策
;;--------------------------------------------------------------------------
;; 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