IntelliJ Sort Imports Alphabetically by group
Answered
I would like to sort my imports alphabetically by group.
For example:
import com.hopding.jrpicam.RPiCamera;
import com.hopding.jrpicam.exceptions.FailedToRunRaspistillException;
Has to become:
import com.hopding.jrpicam.exceptions.FailedToRunRaspistillException;
import com.hopding.jrpicam.RPiCamera;
Is this possible?
Please sign in to leave a comment.
Please try Code | Optimize imports and Code | Rearrange Code
That's the default behavior. 'P' is smaller than 'e' in ascii table.