vimでのファイルエンコーディングまとめ(vim Tips)
よく使う設定値
設定項目 | 省略形 | 設定内容 | |
---|---|---|---|
ファイルエンコード | fileencoding | fenc | utf-8 | sjis | cp932 | euc-jp |
改行コード | fileformat | ff | dos | mac | unix |
BOM(Unicode時) | bomb | nobomb | - | - |
現在の状態確認
:se fenc ff
:se fenc ff
UTF-8(LF)に変換
:se fenc=utf-8 ff=unix
:se fenc=utf-8 ff=unix
変換結果確認
utf-8に変換したのでついでにBOM確認も含める
BOMはついていない
BOMを付ける
:se bomb
:se bomb
バイナリで確認してみる
:%!xxd
戻す
:%!xxd -r
その他
指定したコードで開きなおす
:e ++enc=sjis
:e ++enc=sjis
変換不可で?になるのを考慮する場合
:e ++enc=sjis ++bad=keep
Author And Source
この問題について(vimでのファイルエンコーディングまとめ(vim Tips)), 我々は、より多くの情報をここで見つけました https://qiita.com/airkoda/items/228e5e80b436ab0933fc著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .