API to execute typed handler postprocessing in a separate command

This allows to undo the formatting separately from the typing which
has triggered the formatting (IDEA-126243)
This commit is contained in:
Dmitry Jemerov
2018-04-19 14:11:06 +02:00
parent 83ce253a83
commit a0f3c56b54
11 changed files with 147 additions and 55 deletions
@@ -0,0 +1,7 @@
class Foo {
void m() {
if (true) {
System.out.println();
}<caret>
}
}
@@ -0,0 +1,7 @@
class Foo {
void m() {
if (true) {
System.out.println();
}<caret>
}
}
@@ -0,0 +1,7 @@
class Foo {
void m() {
if (true) {
System.out.println();
<caret>
}
}