added empty match option

This commit is contained in:
Amir Tepper
2019-10-17 13:37:09 +03:00
parent 31916384c1
commit 0e241a0fc5
4 changed files with 21 additions and 18 deletions

View File

@@ -16,7 +16,7 @@ namespace Wox.Infrastructure
public static FuzzyMatcher Create(string query)
{
return new FuzzyMatcher(query, new MatchOption());
return new FuzzyMatcher(query, StringMatcher.EmptyMatchOption);
}
public static FuzzyMatcher Create(string query, MatchOption opt)