да в виме вроде из коробки, гвиме вроде фонт уникодный подгрузить.
$ vim testfile
$ file testfile
testfile: UTF-8 Unicode text
$ gvim testfile2
$ file testfile2
testfile2: UTF-8 Unicode text
:-)
Свершилось! :-) ":set enc=UTF-8" в сочетании с шрифтом ------iso10646-1 сработало. Спасибо всем!
>>2. Что у тебя за древний vim?
gvim --version
VIM - Vi IMproved 6.1
Included patches: 1-18
Compiled by Wichert Akkerman <wichert@deephackmode.org>
Normal version with GTK GUI.
...
В Мандрейке был с gtk1, в Вуди - тоже с gtk1. Я и не знал, что такое бывает(gtk2 в gvim)
Еще раз, спасибо!
You can reload a file using a different encoding if vim wasn't able to detect the correct encoding:
:e ++enc=<encoding>
For example, on Windows in western Europe, the default encoding is latin1. However I often use vim to edit batch files they must be encoded using the console codepage which is is usually cp850 or cp437. So I reload the file using this command: