Hi,
I’m writing a plugin that adds additional autocomplete items.
I have two requirements that I’m having trouble with.
1. I need to autocomplete async - that is, after autocomplete is triggered, I’m sending out a request to an external service and waiting for a response before I know the items I want to complete. I couldn’t find any support for adding items after the completion list is created.
2. I need to change / add completions as the user types. That is, once the user types a few additional characters, my plugin knows how to provide better completions. I have not been able to find anything that is triggered as the user types (and which can then update the completion list).
Thank you!