AlexPl292 / IdeaVim-EasyMotion

EasyMotion emulation plugin for IdeaVim
https://plugins.jetbrains.com/plugin/13360-ideavim-easymotion/
GNU General Public License v3.0
346 stars 7 forks source link

Easymotion does not take effect #100

Open DBeidachazi opened 1 year ago

DBeidachazi commented 1 year ago

This is my ideavimrc.

set scrolloff=5 set incsearch map Q gq

Plug 'easymotion/vim-easymotion' let mapleader='\' set easymotion map (easymotion-prefix)

When I press \ , vim will incorrectly print the text

Plugsymotion-prefix) 'easymotion/vim-easymotion' let mapleader='\' set easymotion map (easymotion-prefix)

DBeidachazi commented 1 year ago

sorry this is my ideavimrc map <Leader> <Leader> <Plug>(easymotion-prefix)

YangAoLib commented 1 year ago

I think your leader key should be a real key. The leader key is empty is reason that easymotion don't effect. I use the as the leader key

let mapleader=" "
set easymotion
map <Leader> <Plug>(easymotion-prefix)