Emacsの文字コード関連アレコレ
最近しょっちゅう調べているので覚え書きがてら。
文字コードが誤判定されてファイルを読み込んでしまったとき
- C-x -> Enter -> c と入力して、正しい文字コードを指定
- C-x -> C-v -> Enter
HTML保存時の自動判別をオフにする
HTMLのMETAタグを見て文字コードを勝手に変更して保存しようとする機能をオフにする.emacsの設定
(setq auto-coding-functions (remove 'sgml-html-meta-auto-coding-function auto-coding-functions))
(setq auto-coding-functions (remove 'sgml-xml-auto-coding-function auto-coding-functions))
“^M”を置換で削除
- M-%
- C-q C-M
- Enter
- Enter
PHPモードでコメントが /* */ になるのを // に変更する.emacsの設定
(setq comment-start "// "
comment-end ""
comment-start-skip "// *")
コメントを残す