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 1258c44 commit c509c02Copy full SHA for c509c02
Plugins/Wox.Plugin.Folder/Main.cs
@@ -191,7 +191,9 @@ private List<Result> QueryInternal_Directory_Exists(Query query)
191
if (incompleteName.StartsWith(">"))
192
{
193
searchOption = SearchOption.AllDirectories;
194
- incompleteName = incompleteName.Substring(1);
+
195
+ // match everything before and after search term using supported wildcard '*', ie. *searchterm*
196
+ incompleteName = "*" + incompleteName.Substring(1);
197
}
198
199
try
0 commit comments