Is there a way to map between an ITextBuffer and the active view (IWpfTextView) for that buffer?
There is n method:
IVsTextManager.GetActiveView(
int fMustHaveFocus,
IVsTextBuffer pBuffer,
out IVsTextView ppView
)
That does the buffer to view mapping for an IVsTextBuffer and IVsTextView (I'm guessing these are older/alternate interfaces?)
I'm trying to implement an ITagger service and want to get the active view so I can process Mouse messages. I'm given an ITextBuffer object and would like to get the current active view for the buffer.