remove a flag to disable multiple carets in editor and supporting legacy code

missed cleanup
This commit is contained in:
Dmitry Batrak
2015-01-13 11:07:35 +03:00
parent 8c77ffff72
commit 9426c5a075
@@ -1226,42 +1226,6 @@ public class Test {
assert !lookup
}
public void testBlockSelection() {
doTestBlockSelection """
class Foo {{
<caret>tx;
tx;
}}""", '\n', '''
class Foo {{
toString()x;
toString()<caret>x;
}}'''
}
public void testBlockSelectionTab() {
doTestBlockSelection """
class Foo {{
<caret>tx;
tx;
}}""", '\t', '''
class Foo {{
toString();
toString()<caret>;
}}'''
}
public void testBlockSelectionBackspace() {
doTestBlockSelection """
class Foo {{
<caret>t;
t;
}}""", '\b\t', '''
class Foo {{
toString();
toString()<caret>;
}}'''
}
public void testMulticaret() {
doTestMulticaret """
class Foo {{