bkad / CamelCaseMotion

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

motion across '.' and '-' #2

Closed bkad closed 9 years ago

bkad commented 13 years ago

WIP

aemonge commented 9 years ago

Do you mean that camelMotion moves across words with '.' and '-' ????

For example: say.hello() [ motion looks at it as it was just a single word, right? ]

bkad commented 9 years ago

It currently treats it as a separate word.

Current Motion:

[s]ay.hello
say[.]hello
say.[h]ello

I'd like it to move like:

[s]ay.hello
say.[h]ello
lin7sh commented 9 years ago

Great feature!