While editing a file I want to use a hotkey to call an External Tool that I have setup to use the "Output" tab. Currently when I use the hotkey the focus leaves the edit pane and goes to the "Output" window - I want the focus to not change from the edit pane.

link|improve this question

80% accept rate
feedback

2 Answers

Try assigning a macro to your hotkey and executing the external tool from the macro. You can create a new macro using the Macro Editor by pressing Alt-F11.

link|improve this answer
Unfortunately using a macro to call the external tool still switches focus to the "Output" tab. Thanks for making me aware of Visual Studio macros though. – Brandon Leiran Apr 30 '09 at 13:08
feedback
up vote 0 down vote accepted

Using a Visual Studio macro (inspiration from Stephen Nutt) an acceptable (to me) workaround is:

Public Module RunTestExternalTool
    Sub RunExternalTool1andReturnFocusToEdit()
        DTE.ExecuteCommand("Tools.ExternalCommand1")
        DTE.ExecuteCommand("View.ViewCode")
    End Sub
End Module

This makes an assumption that the user wants to return focus the the ViewCode pane (no matter where they started).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.