Reputation: 2943
I know there is an option for auto-indentation but I’d like to have a bit of control on how many the levels of indentation I have, or at least to be able to set those parameters somewhere.
This is what I get with auto indentation:
gl.glClearColor(Color.red(mBackgroundColor) / 255f,
Color.green(mBackgroundColor) / 255f,
Color.blue(mBackgroundColor) / 255f,
Color.alpha(mBackgroundColor) / 255f);
This is what I want:
gl.glClearColor(Color.red(mBackgroundColor) / 255f,
Color.green(mBackgroundColor) / 255f,
Color.blue(mBackgroundColor) / 255f,
Color.alpha(mBackgroundColor) / 255f);
Currently I have to select one by one the three lines below gl.glClearColor(...
and remove the additional tab character by hand.
Edit
These are my settings, I'm using tab characters with smart tabs disable, but I still get two tab characters in some cases.
Upvotes: 0
Views: 2238
Reputation: 307
Upvotes: 1