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