From 0e555b52243a502fba377b2da8bae0484497b59a Mon Sep 17 00:00:00 2001 From: Jeremy Date: Tue, 29 Nov 2022 20:33:22 +1100 Subject: [PATCH] fix Windows Indexed Content search not triggering --- Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs index 9ede33fe3..2752e57b0 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs @@ -47,7 +47,8 @@ namespace Flow.Launcher.Plugin.Explorer.Search if (ActionKeywordMatch(query, Settings.ActionKeyword.SearchActionKeyword) || ActionKeywordMatch(query, Settings.ActionKeyword.QuickAccessActionKeyword) || ActionKeywordMatch(query, Settings.ActionKeyword.PathSearchActionKeyword) - || ActionKeywordMatch(query, Settings.ActionKeyword.IndexSearchActionKeyword)) + || ActionKeywordMatch(query, Settings.ActionKeyword.IndexSearchActionKeyword) + || ActionKeywordMatch(query, Settings.ActionKeyword.FileContentSearchActionKeyword)) { if (string.IsNullOrEmpty(query.Search)) return QuickAccess.AccessLinkListAll(query, Settings.QuickAccessLinks);