Fix tab completion of % (random) pattern removing the % part of the input

This commit is contained in:
dordsor21 2021-11-16 14:54:43 +00:00
parent 5692ec54dd
commit 9bf9885ffb
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B
1 changed files with 4 additions and 1 deletions

View File

@ -33,17 +33,20 @@ public class RandomPatternParser extends InputParser<Pattern> {
}
// get suggestions for the last token only
String token = patterns.get(patterns.size() - 1);
String randString = "";
String previous = String.join(",", patterns.subList(0, patterns.size() - 1));
if (token.matches("[0-9]+(\\.[0-9]*)?%.*")) {
String[] p = token.split("%");
if (p.length < 2) {
return Stream.empty();
} else {
randString = p[0];
token = p[1];
}
}
final List<String> innerSuggestions = worldEdit.getPatternFactory().getSuggestions(token);
return innerSuggestions.stream().map(s -> previous + "," + s);
String prev = previous + "," + randString + "%";
return innerSuggestions.stream().map(s -> prev + s);
//FAWE end
}