In vim I can use f followed by a character to go to the next occurrence of that character on the current line. For example, if I have the following (cursor position
f
When I searched for that I would be happy to just have the "native" solution: just enter in command mode:
/\u
which stands for "search for an uppercase letter". After that just move between capital letters with n and N (shift + n).
n
N