I have `Use "camelHump" words` options selected, s...
# intellij
w
I have
Use "camelHump" words
options selected, so when I perform
Extend selection
action, the selection gets extended word by word. However, it’s not very convenient for those cases where I want to select an entire expression, for example when using multiple carets:
Copy code
val f<caret>oo = 2
val f<caret>ooBar = 3
Performing
Extend selection
here will select
foo
in both cases, performing it again will select entire
val foo = 2
in the first line, and
fooBar
in the second line. Doing the same but with
Use "camelHump" words
unchecked will select
foo
and
fooBar
respectively on the first
Extend selection
usage. Is there a shortcut or some other way to extend a selection as if the
Use…
option was off, but keep it on in general?
f
Interesting for me it selects foo then fooBar and then the line.
w
That’s expected with the camelHump words option on. And the issue I have is specifically with multicursor, where I want to expand to
foo
and
fooBar
in one command