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...