From c9abac7786f4dbc62cb109f399459ce6efa5494a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Feb 2026 11:04:57 +0000 Subject: [PATCH 1/2] Initial plan From a970a21afa754d4e749aac36b4aa2cda58954b77 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Feb 2026 11:08:36 +0000 Subject: [PATCH 2/2] Fix Quick Access items not appearing in Explorer plugin search results Remove the incorrect `QuickAccessKeywordEnabled` check from `GetQuickAccessResultsFilteredByActionKeyword`. Quick Access items should always be merged into regular search results when they match the query, regardless of whether the dedicated Quick Access action keyword is enabled. The `QuickAccessKeywordEnabled` flag should only control whether the dedicated action keyword (e.g. `q foo`) activates Quick Access-only searches. Fixes: Quick Access items missing in Explorer plugin (2.1.0 regression) Co-authored-by: Jack251970 <53996452+Jack251970@users.noreply.github.com> --- Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs index 9420e3d3a31..28ab1d2e24b 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs @@ -299,9 +299,6 @@ private bool IsExcludedFile(SearchResult result) private List GetQuickAccessResultsFilteredByActionKeyword(Query query, List actions) { - if (!Settings.QuickAccessKeywordEnabled) - return []; - var results = QuickAccess.AccessLinkListMatched(query, Settings.QuickAccessLinks); if (results.Count == 0) return [];