title: Mouse Mode — enable Copy/Paste To enable mouse copy/paste (i.e. so that vim doesn't respond to the mouse) ```plaintext set mouse=r ``` and to make vim respond to the mouse (so that selecting with the mouse does visual selecting and copy via ctrl-shift-c doesn't work): ```plaintext set mouse=a ```