Hello!
I have a plugin that provides some very useful platform-specific autocompletions that happen to be big and ugly filepaths. It works exactly the way I want it to, but it has some nasty side effects.
All of the autocompletions returned from “on_query_completions” get stuck in the completions list, so when I continue to code completions goes beyond being useless and just becomes a burden, since the long completions I added match pretty much everything via regex.
Is there some mechanism for accessing and modifying the current list of autocompletions, even if it’s just the API-injected ones? I just want to remove the completions I added when “on_query_completions” gets called if the prefix doesn’t meet my criteria.
Thanks in advance,
Tom