File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Plugins/Flow.Launcher.Plugin.Explorer/Search Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -37,17 +37,17 @@ internal List<Result> Search(Query query)
37
37
if ( IsFileContentSearch ( query . ActionKeyword ) )
38
38
return WindowsIndexFileContentSearch ( query , querySearch ) ;
39
39
40
- var quickFolderLinks = quickFolderAccess . FolderListMatched ( query , settings . QuickFolderAccessLinks , context ) ;
41
-
42
- if ( quickFolderLinks . Count > 0 )
43
- results . AddRange ( quickFolderLinks ) ;
44
-
45
40
// This allows the user to type the assigned action keyword and only see the list of quick folder links
46
41
if ( settings . QuickFolderAccessLinks . Count > 0
47
42
&& query . ActionKeyword == settings . SearchActionKeyword
48
43
&& string . IsNullOrEmpty ( query . Search ) )
49
44
return quickFolderAccess . FolderListAll ( query , settings . QuickFolderAccessLinks , context ) ;
50
45
46
+ var quickFolderLinks = quickFolderAccess . FolderListMatched ( query , settings . QuickFolderAccessLinks , context ) ;
47
+
48
+ if ( quickFolderLinks . Count > 0 )
49
+ results . AddRange ( quickFolderLinks ) ;
50
+
51
51
var isEnvironmentVariable = EnvironmentVariables . IsEnvironmentVariableSearch ( querySearch ) ;
52
52
53
53
if ( isEnvironmentVariable )
You can’t perform that action at this time.
0 commit comments