encoding - Vim display wchar text properly -


I am trying to view a file that was saved as a bore, such as text my GVIm window I am looking for:

  T ^ @ e ^ @ x ^ @ t ^ @ ^ ^ ^ ^ @ ^ ^ ^ ^ @  

.. Which is really annoying, I want to edit this file as a regular text document, and I want to save it in the same format. I tried to do : encoding = UTF-16 (and utf-16le , ucs-2 and other formats), and UCS-2le , but never changes in document view. How can I complete this?

You can reload the file with the appropriate encoding:

 : E ++ enc = utf-16  

Comments