IntelliJ Sort Imports Alphabetically by group
已回答
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 try Code | Optimize imports and Code | Rearrange Code
That's the default behavior. 'P' is smaller than 'e' in ascii table.