tags:

views:

186

answers:

3

Is it possible to use vim with the mouse? If so, how?

+5  A: 

With GVim, you can select text and move the cursor, and select menu options with the mouse. Copy and paste, by right-clicking etc... But I guess this misses the point of using VIM.

Jose Basilio
+3  A: 

You can map certain actions to mouse left click and right click. And there are plenty of already mapped actions to work with ctags and other things.

:help mouse-using
Mykola Golubyev
+6  A: 

You can enable the mouse with :set mouse=a (The letter 'a' means enable it in all modes)

soulmerge