Search code examples
vimvim-plugin

Binding EasyMotion in Vim Visual Mode


What lines should I have in .vimrc to be able to use easymotion in visual mode? Currently I have these lines, but it isn't working:

nmap <C-N> <Plug>(easymotion-overwin-f)
vmap <C-n> <Plug>(easymotion-overwin-f)

Solution

  • I am not using easymotion but did you unmap the default behaviour of

    <C-N>
    <C-n>
    

    or used unmapped keys? The syntax seems correct.