Changing carriage position movement behavior in intellij

Suppose we have the following line of code:

private final String |sourceCode = "int a";

where | carriage position.

If you press CTRL + RIGHT, the carriage is currently moving to

private final String sourceCode |= "int a";

but I would like him to switch to

private final String source|Code = "int a";

as happens in many other IDEs. How to change this parameter in intellij?

+3
source share
1 answer

Go to Settings-> Editor-> Smart Keys and turn on "Use CamelHumps Words". You can also disable the "Honor CamelHumps words settings" option by double-clicking "in Settings-> Editor" to improve the behavior of other IDEs (Eclipse?).

Hi

+7
source

All Articles