Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以前在 Vim 中工作的 tex 文件,但现在我必须运行
:e ++enc=utf16 /path/to/file.tex
正确查看文件。
如果我做
:write ++enc=utf-8 /path/to/file.tex,
该文件是中文的(我不知道为什么)。
如何更改编码,这样我就不需要:e ++enc=utf16每次都运行?
:e ++enc=utf16
这终于奏效了::set fileencodings=ucs-bom,utf-8,sjis
:set fileencodings=ucs-bom,utf-8,sjis