bkad / CamelCaseMotion

A vim script to provide CamelCase motion through words (fork of inkarkat's camelcasemotion script)
589 stars 45 forks source link

`<leader>w` cost 3 second to jump to the next word in visual mode #30

Closed jinleileiking closed 8 years ago

bkad commented 8 years ago

Not able to reproduce this, can you provide the bindings you're using in your vimrc?

jinleileiking commented 8 years ago

https://github.com/jinleileiking/DotFiles/blob/master/.vimrc

Asheq commented 8 years ago

I'm guessing this line in your vimrc is the problem:

map <Leader>wp ve"0p

Vim is waiting to see if you are going to type the p or not.

bkad commented 8 years ago

@Asheq thanks for finding the issue!