Hi, is it possible to indent code in QtCreator from this:
to code with spaces before and after keyword and operators?Code:
if(flag==6){ bufferIndex+=5; }
Code:
if ( flag == 6 ) { bufferIndex += 5; }
After indent ( ctrl + I ) I get only aligment of 2.line and result is lik this:
Code:
if(flag==6){ bufferIndex+=5; }
I have found it is possible to change CodeStyle in projects but don’t know how to add this spaces.
