Tuesday, August 4, 2009

E538: No mouse support: mouse=a

Sometimes I got this error when some applications try to load VIM as my default editor. The fix is simple, just open up your .vimrc file and change the following line:
set mouse=a

to:
if has("mouse")
set mouse=a
endif

No comments:

Post a Comment