up vote 4 down vote favorite
3
share [g+] share [fb]

For example, I currently have this:

set iskeyword-=_

This has the effect of making this work:

foo_bar

If cursor is on "f", pressing w moves cursor to the underscore. Pressing again moves to the "b" in bar. This is the desired effect for movement, but has the undesired side-effect of breaking completion. Same story with CamelCase tokens. For example,

If I have this:

foo_bar

and I type foo_<CTRL+N> I don't get "foo_bar" as a completion option.

TIA, Noah

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

Install the camelcase motion plugin and follow the example on the page to override the default w mapping with the CamelCase one. This will make movements follow CamelCase, but won't require changes to iskeyword. Alternatively you can use the alternative comma-preceded mappings (my preference), ,w, ,e etc to do CamelCase motions.

link|improve this answer
Awesome. Thanks. I kept the original wbe motions, though. +1 for also fixing CamelCase, which wasn't part of my original question :) – G33kx0r Nov 6 '09 at 19:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.