We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ad6073 commit 3b651aaCopy full SHA for 3b651aa
src/main/java/org/skriptlang/skript/registration/SyntaxInfoImpl.java
@@ -34,6 +34,12 @@ private static Priority estimatePriority(Collection<String> patterns) {
34
return SyntaxInfo.PATTERN_MATCHES_EVERYTHING;
35
}
36
priority = SyntaxInfo.COMBINED;
37
+ } else if (chars[i] == '<') {
38
+ if (i > 0 && chars[i - 1] == '\\') { // skip escaped angle brackets
39
+ continue;
40
+ }
41
+ // regular expression string
42
+ return SyntaxInfo.PATTERN_MATCHES_EVERYTHING;
43
44
45
0 commit comments