mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-68400 XPath: code completion in node test: Tab does not erase the asterisk
This commit is contained in:
+1
-1
@@ -98,7 +98,7 @@ class XPathInsertHandler implements InsertHandler {
|
||||
int x = context.getSelectionEndOffset();
|
||||
while (x < textLength) {
|
||||
final char c = charAt(charsSequence, x);
|
||||
if (isIdentifier(c) || (c == ':' && !isNamespace)) {
|
||||
if (isIdentifier(c) || c == '*' || (c == ':' && !isNamespace)) {
|
||||
x++;
|
||||
} else {
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user