Hello All,
I have a Visual Studio extension that provides statement completion (Intellisense). I build a series of Completions that are then provided to the customer. However, in my list of completions I would like to provide all variables of a certain type. In the default (All) intellisense list provided by Visual Studio, a user has access to all the completions representing these variables that are available in the editor.
Is there any sort of interface or method to retrieve this information so I can provide a merged list of Completions in my StatementCompletion list? I would like to avoid needing to scrape the text of the file currently being edited as Visual Studio has already done the work for me and has a better sense of what is available based on the language currently being edited.
Thank you for all your help.
Sincerely,
Dirk Dubois