mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-99724 Wrong text selection on doubleclick
This commit is contained in:
+3
-1
@@ -31,7 +31,9 @@ import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
public class NaturalLanguageTextSelectioner extends ExtendWordSelectionHandlerBase {
|
||||
private static final Set<Character> NATURAL = ContainerUtil.newTroveSet('(', ')', '.', ',', ':', ';', '!', '?', '$', '@', '%', '\"', '\'', '<', '>', '[', ']');
|
||||
private static final Set<Character> NATURAL = ContainerUtil.newTroveSet(
|
||||
'(', ')', '.', ',', ':', ';', '!', '?', '$', '@', '%', '\"', '\'', '<', '>', '[', ']', '_'
|
||||
);
|
||||
private static final Set<Character> SENTENCE_END = ContainerUtil.newTroveSet('.', '!', '?');
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user