ctrl+w shouldn't choke on unclosed argument lists (EA-51589)

This commit is contained in:
peter
2013-11-07 18:14:48 +01:00
parent 1de20e6631
commit fdb9f6ef82
@@ -50,7 +50,9 @@ public class ListSelectioner extends BasicSelectioner {
}
List<TextRange> result = new ArrayList<TextRange>();
result.add(new TextRange(start, end));
if (start != 0 && end != 0) {
result.add(new TextRange(start, end));
}
return result;
}
}