add multi-ActionKeywords for Explorer

This commit is contained in:
Jeremy Wu 2020-07-15 05:50:48 +10:00
parent ca835266b7
commit a1e371b7e8
2 changed files with 10 additions and 1 deletions

View file

@ -17,5 +17,11 @@ namespace Flow.Launcher.Plugin.Explorer
[JsonProperty]
public List<FolderLink> IndexSearchExcludedSubdirectoryPaths { get; set; } = new List<FolderLink>();
[JsonProperty]
public string SearchActionKeyword { get; set; } = Query.GlobalPluginWildcardSign;
[JsonProperty]
public string FileContentSearchActionKeyword { get; set; } = "doc:";
}
}

View file

@ -1,6 +1,9 @@
{
"ID": "572be03c74c642baae319fc283e561a8",
"ActionKeyword": "*",
"ActionKeywords": [
"*",
"doc:"
],
"Name": "Explorer",
"Description": "Search and manage files and folders. Explorer utilises Windows Index Search",
"Author": "Jeremy Wu",