This commit is contained in:
Maxim Shafirov
2010-07-29 18:53:33 +04:00
parent e49dfcedae
commit f08ad9c2a4
2 changed files with 3 additions and 3 deletions
@@ -70,11 +70,11 @@ public class GotoSymbolModel2 extends ContributorsBasedGotoByModel {
@NotNull
public String[] getSeparators() {
return new String[] {".", ":"};
return new String[] {"."};
}
@Override
public String getHelpId() {
return "procedures.navigating.goto.class";
}
}
}
@@ -198,7 +198,7 @@ public class NameUtil {
firstIdentifierLetter = true;
}
else {
if (prevIsUppercase) {
if (c == ':' || prevIsUppercase) {
buffer.append("[A-Za-z\\s0-9\\$]*");
}