Skip to content

Commit 2be108d

Browse files
TheBestPessimistTheBestPessimist
authored andcommitted
formatting
1 parent 4289d10 commit 2be108d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/Everything/EverythingSearchManager.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ private async ValueTask ThrowIfEverythingNotAvailableAsync(CancellationToken tok
3939
Main.Context.API.GetTranslation("flowlauncher_plugin_everything_sdk_issue"));
4040
}
4141
}
42+
4243
private async ValueTask<bool> ClickToInstallEverythingAsync(ActionContext _)
4344
{
4445
var installedPath = await EverythingDownloadHelper.PromptDownloadIfNotInstallAsync(Settings.EverythingInstalledPath, Main.Context.API);
@@ -68,8 +69,8 @@ public async IAsyncEnumerable<SearchResult> SearchAsync(string search, [Enumerat
6869
await foreach (var result in EverythingApi.SearchAsync(option, token))
6970
yield return result;
7071
}
71-
public async IAsyncEnumerable<SearchResult> ContentSearchAsync(string plainSearch,
72-
string contentSearch,
72+
73+
public async IAsyncEnumerable<SearchResult> ContentSearchAsync(string plainSearch, string contentSearch,
7374
[EnumeratorCancellation] CancellationToken token)
7475
{
7576
await ThrowIfEverythingNotAvailableAsync(token);
@@ -102,6 +103,7 @@ public async IAsyncEnumerable<SearchResult> ContentSearchAsync(string plainSearc
102103
yield return result;
103104
}
104105
}
106+
105107
public async IAsyncEnumerable<SearchResult> EnumerateAsync(string path, string search, bool recursive, [EnumeratorCancellation] CancellationToken token)
106108
{
107109
await ThrowIfEverythingNotAvailableAsync(token);

0 commit comments

Comments
 (0)