What vimscript command(s) could you use to syntax-color words in CamelCase?

link|improve this question

you might want to create a regex to match camelCase and then create a mapping to this regex to find or highlight camelCase words. – Ravikiran Feb 4 '11 at 4:43
feedback

1 Answer

up vote 2 down vote accepted

You can just use the :match command if you want to highlight words with camelCase:

:match Error /\C\<[a-z0-9]\+[A-Z]\w*\>/

If you were to use syntax commands you would first need to decide how you want to work in with the existing syntax highlighting for each filetype, but this would give you more control - e.g., only matching camelCase used in names of variables.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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