Minimal length of search string is now 1

update_gitlab_rules
Shihan42 2 years ago
parent b83cf9a92e
commit 274afff5c3

@ -89,7 +89,7 @@ namespace MWGui
void markOccurrence(size_t textPosition, size_t length);
size_t currentOccurrence = std::string::npos;
std::string currentSearchTerm = "";
const size_t minLengthOfSearchTerm = 3;
const size_t minLengthOfSearchTerm = 1;
std::string complete(std::string input, std::vector<std::string>& matches);

Loading…
Cancel
Save