Disable annoying VIM visual mode

Argomenti vari di carattere sistemistico
Post Reply
daniele
Posts: 327
Joined: 04 Mar 2009, 13:59

Disable annoying VIM visual mode

Post by daniele »

Disable it forever:

Code: Select all

echo "syntax enable" > ~/.vimrc
echo "set mouse-=a" >> ~/.vimrc
Or turn it off while in session:

Code: Select all

:set mouse-=a
Post Reply