15
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Emacs] MacOSでEmacsを使うときは、バックスラッシュにご注意 & Emacs で[?¥]は使うな

Posted at

問題

以前書いた記事で、Emacsでバックスラッシュが入力できない問題に対処しましたが、文字コードの問題でファイルを開いた時に化けてしまいました。

Cocoa Emacsでは、通常Option + ¥では/を入力できません。
¥に対するキーアサインをいじって、/を入力するようにします。

(define-key global-map [?¥] [?\\])  ;; ¥の代わりにバックスラッシュを入力する

(...)
上記コードをコピペしたときに意図通り動くかどうかは未確認です
念の為、円マークとバックスラッシュはEmacs以外のところでそれぞれ打ち込んでからyankしたほうが安全です。

[?¥] の部分の文字コードの解釈がUTF-8以外のものと解釈してしてしまうことがあったりなかったりするようです。
行頭にcoding: utf-8を書けばよいのですが、たかだか1文字のためにそれも面倒。

解決方法

こうしたらASCIIの範囲に収まって、化けて困ることがなくなりました。

(define-key global-map [165] [92]) ;; 165が¥(円マーク) , 92が\(バックスラッシュ)を表す

¥に限らず、UTF-8の範囲にある文字にキーをバインドする場合、C-x C-eでキーコードを調べて置き換えるといいでしょう。

15
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?