-
Plugin developer question - is there a way to disable flow launchers auto rank system when result order matters I maintain a plugin where order matters (e.g., help feature shows available commands that should be ordered alphabetically, there is a sort feature where user can specify sort order, etc.). The issue I have found is that flow launcher appears to keep a ranking of results in a UserSelectedRecord.json file and that this ranking takes precedence over all; I tried hard coding a sort order in the c# list object but the ranking by Flow still took precedence; clearing the data stored in the UserSelectedRecord.json resulted in expected sort order. I can see why this auto ranking system can be very useful in most use cases given it avoids the user having to manually search multiple matches to select the most common result record, however, in for my use case where sort order matters, this is not the desired behavior. Is there a way to turn this off using the plugin api? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I guess no for now. Maybe you can just setting a crazy score difference for each results so the order would not be reordered unless clicked very very many time? |
Beta Was this translation helpful? Give feedback.
#2998