Added Plugin for searching additional directories

This commit is contained in:
Aaron Campf
2014-03-30 16:03:07 -07:00
parent dc5eeb8476
commit 6b9f96697b
12 changed files with 329 additions and 2 deletions

View File

@@ -30,7 +30,8 @@ namespace Wox.Plugin.SystemPlugins
InitialDriverList();
var input = query.RawQuery.ToLower();
if (driverNames.FirstOrDefault(x => input.StartsWith(x)) == null) return results;
//if (driverNames.FirstOrDefault(x => input.StartsWith(x)) == null) return results;
if (!driverNames.Any(x => input.StartsWith(x))) return results;
if (Directory.Exists(query.RawQuery))
{