sjakubowski
sjakubowski

Reputation: 2943

IntelliJ reorder changes tab by filepath

IntelliJ IDEA 12.x orders the diff in the "Changes" tab by filename only, how do you order by the file path?

IE:

src/main/a/SomeFile.java
src/main/b/AnotherFile.java

Versus the current order

src/main/b/AnotherFile.java
src/main/a/SomeFile.java

There seems to be no settings for this tab in the settings options.

enter image description here

Upvotes: 2

Views: 49

Answers (2)

Makoto
Makoto

Reputation: 106410

Use the "Group by Directory" button (or if you're on a Mac, Command-F9). This also groups by the submodule your changes are located in.

Group by Directory icon

Upvotes: 0

LoKi
LoKi

Reputation: 3855

There is "Group by folders" button on the Changes toolbar for this purpose.

Upvotes: 3

Related Questions