easymotion / vim-easymotion

Vim motions on speed!
http://www.vim.org/scripts/script.php?script_id=3526
7.5k stars 362 forks source link

when i use s mode,p don't work. #337

Closed ufwfqpdgv closed 7 years ago

ufwfqpdgv commented 7 years ago

I set g to start s mode,so i can use like 'ga' to go a's pos,but when i input 'gp',it can't work,it become just p's function.because of this,when i want to go p's pos,i must input 'g' and then wait 1s,then input p,is it bug?

ghost commented 7 years ago

Vim has default binds for g, you shoudn't remap it (alone). See :help g.

ufwfqpdgv commented 7 years ago

Well,it seem can't be solved,so i change the s mode's start key to 'f',now it work well,cool...

haya14busa commented 7 years ago

You can use <nowait> but i don't recommend to overwrite g map.

:map <nowait> g <Plug>(easymotion-f)