mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
remove a flag to disable multiple carets in editor and supporting legacy code
missed cleanup
This commit is contained in:
@@ -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 {{
|
||||
|
||||
Reference in New Issue
Block a user