Skip to content

Commit 29a9def

Browse files
author
TheBestPessimist
committed
In path search, ignore extra whitespace around the > character
1 parent bfdf1dd commit 29a9def

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ private async Task<List<Result>> PathSearchAsync(Query query, CancellationToken
204204
{
205205
userSelectionResult =
206206
Settings.PathEnumerator.EnumerateAsync(
207-
query.Search[..recursiveIndicatorIndex],
207+
query.Search[..recursiveIndicatorIndex].Trim(),
208208
query.Search[(recursiveIndicatorIndex + 1)..],
209209
true,
210210
token);

0 commit comments

Comments
 (0)