user1230731
user1230731

Reputation: 55

Remove spaces in IntelliJ

Does anyone know how I can remove spaces in my code. I usually do reformat code, but this does not remove all the doubl spaces and such. I assume there is a way in the preferences but I am unable to find it.

Upvotes: 3

Views: 10282

Answers (1)

Sean Landsman
Sean Landsman

Reputation: 7197

Assuming that this is for Java code (although the general mechanism is true for most file types), you can modify when/how spaces are used in code.

Go to File->Settings->Code Style->Java

If you then click on the Spaces tab you can specify the code layout you want. After you've done this if you reformat your code it should format according to your preferences.

You can specify this for other types too (General, CSS, JavaScript and so on)

Upvotes: 5

Related Questions