Vim 正确显示 wchar 文本
我正在尝试查看一个没有 BOM 作为 wchar 文本保存的文件。在我的 gVim 窗口中我看到:
T^@E^@X^@T^@H^@E^@R^@
...这真的很烦人。我想将此文件作为常规文本文档进行编辑,并且希望 vim 以相同的格式保存它。我尝试过 :set encoding=utf-16
(以及其他变体,例如 utf-16le
、ucs-2
和 ucs-2le
,但文档视图永远不会改变,我该如何实现这一点?
I'm trying to look at a file that was saved without a BOM as wchar text. In my gVim window I see:
T^@E^@X^@T^@H^@E^@R^@
...which is really annoying. I want to edit this file as a regular text document, and I'd like vim to save it in the same format. I've tried doing :set encoding=utf-16
(and other variations such as utf-16le
, ucs-2
, and ucs-2le
, but the document view never changes. How can I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用适当的编码重新加载文件:
You can reload the file with the appropriate encoding: