Disabling IME input in Windows
From Vim Tips Wiki
(Redirected from VimTip631)
Tip 631 • Previous Tip • Next Tip
Created: January 4, 2004 Complexity: basic Author: Avery M. Minimum version: 5.7 Karma: 30/13 Imported from: Tip#631
Often, your Windows locale will reflect a foreign country (e.g. Japan) so you can write text in another character set, but you don't want Vim to do that by default. It is annoying to have to disable IME input every time you start up Vim. But it's much easier than that. Simply add this line to your vimrc:
set iminsert=0
Now, you will start out in regular Roman input mode, without IME.
[edit] Comments
imcmdline and imsearch can also be disabled in the same way.
set imdisable
Categories: Review | VimTip | I18n | Windows
