mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
make the code more obvious when triggering full quick folder access list
This commit is contained in:
parent
00035f7a52
commit
c9c8d0065e
1 changed files with 7 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
using Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo;
|
using Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo;
|
||||||
using Flow.Launcher.Plugin.Explorer.Search.FolderLinks;
|
using Flow.Launcher.Plugin.Explorer.Search.FolderLinks;
|
||||||
using Flow.Launcher.Plugin.Explorer.Search.WindowsIndex;
|
using Flow.Launcher.Plugin.Explorer.Search.WindowsIndex;
|
||||||
using Flow.Launcher.Plugin.SharedCommands;
|
using Flow.Launcher.Plugin.SharedCommands;
|
||||||
|
|
@ -41,9 +41,12 @@ namespace Flow.Launcher.Plugin.Explorer.Search
|
||||||
|
|
||||||
if (quickFolderLinks.Count > 0)
|
if (quickFolderLinks.Count > 0)
|
||||||
results.AddRange(quickFolderLinks);
|
results.AddRange(quickFolderLinks);
|
||||||
|
|
||||||
if (IsFileContentSearch(query.ActionKeyword))
|
// This allows the user to type the assigned action keyword and only see the list of quick folder links
|
||||||
return WindowsIndexFileContentSearch(query, querySearch);
|
if (settings.QuickFolderAccessLinks.Count > 0
|
||||||
|
&& query.ActionKeyword == settings.SearchActionKeyword
|
||||||
|
&& string.IsNullOrEmpty(query.Search))
|
||||||
|
return quickFolderAccess.FolderListAll(query, settings.QuickFolderAccessLinks, context);
|
||||||
|
|
||||||
var isEnvironmentVariable = EnvironmentVariables.IsEnvironmentVariableSearch(querySearch);
|
var isEnvironmentVariable = EnvironmentVariables.IsEnvironmentVariableSearch(querySearch);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue