3

I recently changed my system language to Tamil (a language used in India) from English. While I was enjoying Ubuntu in Tamil, my favorite editor vim has run into an issue because of the system language change, it seems.

enter image description here

How can I fix this?

thefourtheye
  • 4,922
  • 2
  • 26
  • 32

1 Answers1

1

I would try running this in from the vim terminal while the offending file is opening

:set fileencodings=ucs-bom,utf-8,sjis

and if that doesn't work, you should be able to find what you need here Vim User Manual Language Encoding

What happens if you run vim from the terminal and not gvim?

dustin
  • 670