vimtricks.wiki Concise Vim tricks, one at a time.

How do you enable mouse support in Vim?

Answer

set mouse=a

Explanation

Setting mouse=a enables mouse support in all modes. You can click to position cursor, drag to select, and scroll with the mouse wheel.

Next

How do I visually select a double-quoted string including the quotes themselves?