Question

I'm using Vim 6.3.81 on a x-term through putty. I wanted to map mouse events (like wheel-button click , double click) to specific events using my .vimrc . I've looked at the vim wiki and based on it, defined the following map in my .vimrc:

:nnoremap <2-LeftMouse> :set invnumber<CR>

However , it is not working - double-click is not toggling the line numbers as intended . Do I have to change my X settings to get vim to accept mouse events ?

Thanks...

Was it helpful?

Solution

Have you issued a :set mouse=a or similar?

Vim can accept mouse input through the terminal, but it needs to be explicitly enabled. Both PuTTY and xTerm support it.

:help mouse for more details.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top