How to disable Tabulator for moving the caret between block structures and delimiters in CLion?
Answered
Hello,
When I press the tabulator key I want to indent or at least insert 4 spaces in the code.
However, when the caret is somewhere within a method call statement like this:
foo.bar("some text");
when pressing the tabulator key the caret moves around but does not insert spaces.
E.g.: if the caret is after the last 'o' of 'foo' but before the period '.', I want
foo .bar("some test");
yet the caret jumps around, not inserting the spaces.
I checked the settings, key maps, smart keys, etc. to no avail. What should I do?
Thx.
Please sign in to leave a comment.
Hello! Please go to File | Settings | Keymap, find Main menu > Edit > Next Parameter, right-click on it and select "Remote ⇥", apply changes. This should help.
Great! Thanks!