notepad

Ajouter le support UTF-8 pour vi et vim

Configurer vi pour l'utf-8

vim utf8, utf8 vim

Date de publication : 2008-12-13

Pour ajouter le support UTF-8 à vi et vim il faut éditer le fichier de configuration


pcr@home:~$ sudo vi /etc/vim/vimrc

Et ajouter :


if has("multi_byte")
set encoding=utf-8
setglobal fileencoding=utf-8
set bomb
set termencoding=iso-8859-15
set fileencodings=ucs-bom,iso-8859-15,iso-8859-3,utf-8
else
echoerr "Sorry, this version of (g)vim was not compiled with +multi_byte"
endif

Image : rosay dani

 
 

b1n@sp1n