mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Update search wild card
when retrieving folders and files based search term, use wildcard to match everything before and after search term
This commit is contained in:
parent
1258c44bad
commit
c509c02546
1 changed files with 3 additions and 1 deletions
|
|
@ -191,7 +191,9 @@ namespace Wox.Plugin.Folder
|
|||
if (incompleteName.StartsWith(">"))
|
||||
{
|
||||
searchOption = SearchOption.AllDirectories;
|
||||
incompleteName = incompleteName.Substring(1);
|
||||
|
||||
// match everything before and after search term using supported wildcard '*', ie. *searchterm*
|
||||
incompleteName = "*" + incompleteName.Substring(1);
|
||||
}
|
||||
|
||||
try
|
||||
|
|
|
|||
Loading…
Reference in a new issue