This falls into the obsessive-compulsive programmer bucket.

I have developed a fondness for separating imports by package with blank lines. So:

import java.io.BufferedInputStream;
import java.io.IOException;

import java.sql.SQLException;

...instead of:

import java.io.BufferedInputStream;
import java.io.IOException;
import java.sql.SQLException;

I can easily make Eclipse do the latter using their preferences dialog. And I can make Eclipse do the former if I know in advance what the packages are going to be, since Eclipse inserts a blank line by default after each import group.

My question is: is there any way to tell Eclipse to insert a blank line between sub packages automatically?

link|improve this question

79% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.