I am new to vim and IdeaVim. Is there a way to move to the next word in camel case word? [c]amelCaseWord -> w -> camel[C]aseWord -> w -> camelCase[W]ord
CodePudding user response:
IdeaVim supports camel case motions: ]w
, [w
, ]b
, [b
It is also possible to remap default motions to the camel case ones in your ideavimrc/vimrc:
map w [w
map e ]w
map b [b