Skip to content

Commit 0e555b5

Browse files
committed
fix Windows Indexed Content search not triggering
1 parent 22bc292 commit 0e555b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ internal async Task<List<Result>> SearchAsync(Query query, CancellationToken tok
4747
if (ActionKeywordMatch(query, Settings.ActionKeyword.SearchActionKeyword)
4848
|| ActionKeywordMatch(query, Settings.ActionKeyword.QuickAccessActionKeyword)
4949
|| ActionKeywordMatch(query, Settings.ActionKeyword.PathSearchActionKeyword)
50-
|| ActionKeywordMatch(query, Settings.ActionKeyword.IndexSearchActionKeyword))
50+
|| ActionKeywordMatch(query, Settings.ActionKeyword.IndexSearchActionKeyword)
51+
|| ActionKeywordMatch(query, Settings.ActionKeyword.FileContentSearchActionKeyword))
5152
{
5253
if (string.IsNullOrEmpty(query.Search))
5354
return QuickAccess.AccessLinkListAll(query, Settings.QuickAccessLinks);

0 commit comments

Comments
 (0)