-
-
Notifications
You must be signed in to change notification settings - Fork 328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix autocomplete on Program plugin #1850
Conversation
This comment has been minimized.
This comment has been minimized.
@@ -83,6 +83,7 @@ private static MatchResult Match(string query, IReadOnlyCollection<string> candi | |||
public Result Result(string query, IPublicAPI api) | |||
{ | |||
string title; | |||
string titleOnly; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this variable name doesn't provide any information. and is this variable needed? In either case the value is the same as resultName
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, no need for an extra variable. I just noticed that. We can use resultName
as AutoCompleteText
.
Just set |
@check-spelling-bot Report🔴 Please reviewSee the 📂 files view or the 📜action log for details. Unrecognized words (8)autocompletes To accept ✔️ these unrecognized words as correct and remove the previously acknowledged and now absent words, run the following commands... in a clone of the [email protected]:z1nc0r3/Flow.Launcher.git repository curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/Flow-Launcher/Flow.Launcher/actions/runs/4012278108/attempts/1' If the flagged items are 🤯 false positivesIf items relate to a ...
|
Fixed the issue mentioned in #1803 which autocompletes the name + program description when the Show Description is enabled in the Program plugin.