IDEA-127695 Formatting is breaking on typing

This commit is contained in:
Dmitry Batrak
2014-07-23 20:10:16 +04:00
parent 8543a4ae11
commit 1d198e18bb
4 changed files with 29 additions and 3 deletions
@@ -0,0 +1,7 @@
class Foo {
public static void main(String[] args) {
String s = "";
s.replaceAll("\\<caret>");
System.out.println();
}
}
@@ -0,0 +1,7 @@
class Foo {
public static void main(String[] args) {
String s = "";
s.replaceAll("<caret>");
System.out.println();
}
}