Andy Wokula wrote:
Cesar Romani schrieb:
Normally the language of my vim's menu is Italian.
How can I change it to English?
Many thanks in advance,
Cesar
:set langmenu=none
works for me. Put it early in your .vimrc,
:help 'langmenu'
says: "This option must be set before loading menus, switching on
filetype detection or syntax highlighting."
Andy
To change the language for menus _and_ messages I use the following, at
the very top of my vimrc, even before sourcing the vimrc_example.vim :
if has("unix")
language messages C
else
language messages en
endif
You might want to add an "elseif" branch if the above doesn't work on
other OSes such as Macintosh.
See ":help :language" (without the quotes of course).
Best regards,
Tony.