Is there a way to match the most frequently completed items first like in visual studio? I guess if it isn't available, maybe it's doable by implementing a custom matching algorithm?
Thanks,
Emil
Is there a way to match the most frequently completed items first like in visual studio? I guess if it isn't available, maybe it's doable by implementing a custom matching algorithm?
Thanks,
Emil
Hi Emil,
Sorry but we don't have any functionality for that at this time. Yes you'd need to maintain a dictionary of what was typed and what was matched and then have a custom ICompletionItemMatcher that uses that information be injected to the start of the CompletionSession.ItemMatchers collection.
OK, I was just wondering. It seems easy to implement myself.
Thanks,
Emil
Please log in to a validated account to post comments.