Search code examples
c++settingsclion

How to stop Clion tab key behaviour


When on a C++ line of code like the following

aType.aMethod(
     std::make_shared< T_1>();
^^^^^-- Press tab here 
)

Clion tries to move to the next parameter(i guess), but being the only parameter it goes nowhere. I want to have the tab to just insert characters(tab or space that is) and not to try to cycle the cursor among the method parameter. Is there a way to stop this alternative functionality?

I searched to no avail in

Settings|Editor|CodeStyle|C/C++

Thank you


Solution

  • "Try changing the "Next parameter" and "Previous parameter" keybindings to something else than Tab."

    – Eldar Abusalimov Jul 5 '17 at 9:02