Home > Net >  IdeaVim move between words in camel case word
IdeaVim move between words in camel case word

Time:03-28

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 
  • Related