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-18 19:06:08 +02:00
parent ca12e6fc73
commit da2d0959ea
11 changed files with 137 additions and 129 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>
}
}