Language-sensitive diff
已回答
Sometimes, developers do not create commits that mix whitespace changes with actual code changes, making it very hard to see the actual code changes.
Is it possible to add a "diff mode" that is language sensitive? Concrete example: I do not want to see the following change shown as a diff
```java
foo.bar(a, b);
```
vs.
```java
foo
.bar(a,
b);
```
请先登录再写评论。
Hello,
It's already possible to ignore whitespace changes in diff view: https://www.jetbrains.com/help/idea/differences-viewer.html