Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I remember seeing in either IntelliJ or Eclipse the setting to reformat (cleanup) files whenever they are saved. How do I find it (didn't find it in the settings)

share|improve this question
Wow, really? No one's come up with a way to do this automatically? – emmby May 13 '10 at 16:07
@emmby - we could file a feature request, or search for an existing one. – ripper234 Apr 7 '11 at 14:51
Probably the biggest thing I miss from working in Eclipse... – greg7gkb Feb 11 at 23:25

5 Answers

up vote 10 down vote accepted

I set it to automatically clean up on check-in, which is usually good enough for me. If something is too ugly, I'll just hit the shortcut (Ctrl-Alt-L, Return). And I see they have an option for auto-formatting pasted code, although I've never used that.

share|improve this answer
You can also use Ctrl-Shift-F to format. That works way better for me, since Ctrl-Alt-L is the lock screen command on Ubuntu. – Jason McVetta May 14 at 19:25

This solution worked better for me:

  1. Make a macro (I used Organize Imports, Format Code, Save All)
  2. Assign it a keystroke (I overrode ctrl+s)

Note: You will have to check the box "Do not show this message again" the first time for the organized imports, but it works as expected after that.

Step-by-step for IntelliJ 10.0:

  1. Code -> "Optimize Imports...", if a dialogue box appears, check the box that says "Do not show this message again.", then click "Run".
  2. Tools -> "Start Macro Recording"
  3. Code -> "Optimize Imports..."
  4. Code -> "Reformat Code..."
  5. File -> "Save all"
  6. Tools -> "Stop Macro Recording"
  7. Name the macro (something like "formatted save")
  8. In File -> Settings -> Keymap, select your macro located at "Main Menu -> Tools -> "formatted save"
  9. Click "Add Keyboard Shortcut", then perform the keystroke you want. If you choose ctrl+s like me, it will ask you what to do with the previous ctrl+s shortcut. Remove it. You can always reassign it later if you want.
  10. Enjoy!

For IntelliJ 11, replace

step 2. with: Edit -> Macros -> "Start Macro Recording"
step 6. with: Edit -> Macros -> "Stop Macro Recording"

Everything else remains the same.

-Neil

IntelliJ 12

8. The Preferences contain the Keymap settings. Use the input field to filter the content, as shown in the screenshot.

Intellij / Preferences / Keymap / Macros

share|improve this answer
Three cheers for Neil! Works like a charm! – jolo Aug 10 '11 at 21:19
2  
In IntelliJ 11: 1: Start macro recording: Edit -> Macros -> Start macro recording. 2: Follow instructions above. 3: Stop macro recording: Edit -> Macros -> Stop macro recording. In the Keymap the macro is saved to the Macros folder instead of the Main Menu -> Tools folder. – Markus K Feb 10 '12 at 8:30

Ctrl + Alt + L is format file (includes the two below)

Ctrl + Alt + O is optimize imports

Ctrl + Alt + I will fix indentation on a particular line

I usually run Ctrl + Alt + L a few times before committing my work. I'd rather it do the cleanup/reformatting at my command instead of automatically.

share|improve this answer

I thought there was something like that in IntelliJ, but I can't find it. The only clean-up that happens at save is that white space at the ends of lines is removed. I thought I had to specify that behavior at one point, but I don't see anything related at this point.

share|improve this answer

To configure Eclipse to format the code on save:

  • Properties on you project (File -> properties)
  • Java Editor (or what type of code you edit)
  • Save actions

Choose whether to configure for project or workspace.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.