AlexPl292 / IdeaVim-EasyMotion

EasyMotion emulation plugin for IdeaVim

Home Page:https://plugins.jetbrains.com/plugin/13360-ideavim-easymotion/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

disabling mappings

mario-mazo opened this issue · comments

commented

Hello

in vscode I have bdw mapped to space
and when it shows lets say HH when I press H then highlights all the Hs and then you type the second H and you move to that word.

Here the behavior is different.
first bdw doesnt work and when you have like HH you type the the first H it starts looking for words that start with h and highlight some words are somewhere in the file, the when you type H again it actually goes to where HH initially was.

im guessing is because <Plug>(easymotion-bd-w) mapped to bd-tn so I tried let g:EasyMotion_do_mapping = 0 but still not working.

whats the trick to disable the n here?

thanks

ideavim

let mapleader = ","
set easymotion
let g:EasyMotion_do_mapping = 0
imap jj <Esc>
map  <Space> <Plug>(easymotion-bd-w)

Hi! Unfortunately, this is an issue in AceJump plugin: acejump/AceJump#310