I would like to add a button to the top of the list of options returned by Visual Studio's IntelliSense. When the button is clicked, my custom code will be executed (which will, among other things, cause a popup to appear).
I call it 'button' because when the user click the item, I want a popup window to appear, as opposed to the normal IntelliSense action of completing the user's input.
Eg When we input a class name into the text editor, normally the static properties and static methods will appear in IntelliSense. But I want to add another item to the top of that list.
This item should appear at the top of the IntelliSense list, no matter what input/content caused IntelliSense to appear. The item will never change.
Is this possible, and if so, can you provide some direction as to how I should achieve this?