Skip to content

Commit a1e371b

Browse files
committed
add multi-ActionKeywords for Explorer
1 parent ca83526 commit a1e371b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Settings.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,11 @@ public class Settings
1717

1818
[JsonProperty]
1919
public List<FolderLink> IndexSearchExcludedSubdirectoryPaths { get; set; } = new List<FolderLink>();
20+
21+
[JsonProperty]
22+
public string SearchActionKeyword { get; set; } = Query.GlobalPluginWildcardSign;
23+
24+
[JsonProperty]
25+
public string FileContentSearchActionKeyword { get; set; } = "doc:";
2026
}
2127
}

Plugins/Flow.Launcher.Plugin.Explorer/plugin.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"ID": "572be03c74c642baae319fc283e561a8",
3-
"ActionKeyword": "*",
3+
"ActionKeywords": [
4+
"*",
5+
"doc:"
6+
],
47
"Name": "Explorer",
58
"Description": "Search and manage files and folders. Explorer utilises Windows Index Search",
69
"Author": "Jeremy Wu",

0 commit comments

Comments
 (0)