I have set in my ~/.vimrc
file the following:
set mouse=a
nnoremap <C-LeftMouse> :echo 'Foo'<CR>
And according to other questions I assumed this would print Foo every time click on control and then somewhere inside the editor.
I was expecting the mapping to work and print the message but it has no response. It seems like vim doesn't capture the event or the mapping is incorrect. I can't tell if I am missing something