I have assigned a new Global hotkey to

VS 2010/Options/Environment/Keyboard/OtherContextMenus.FSIConsoleContext.ResetSession

But it seems to work only in the FSI window. How can I make the hotkey work globally?

link|improve this question

1  
It says FSIConsoleContext, what do you mean by resetting session globally? – Yet Another Geek Jun 24 '11 at 13:30
Well, what I want to do is to hit a hotkey while writing the F# code (i.e. being in the editor window) to reset the FSI console window without even taking focus to the FSI window. Is that possible? – Oldrich Svec Jun 25 '11 at 10:51
feedback

1 Answer

up vote 1 down vote accepted

I don't think you can do it the way you describe it (the hotkey will only work within the context of the FSI window), but you can use a VS Macro to change the focus to the FSI console, reset the session and move back;

the following worked for me: (needs additional error handling etc)

Sub ResetFSharpMacro()
    Dim WindowName As String
    WindowName = DTE.ActiveDocument.Name
    DTE.ExecuteCommand("View.F#Interactive")
    DTE.ExecuteCommand("OtherContextMenus.FSIConsoleContext.ResetSession")
    DTE.Windows.Item(WindowName).Activate()
End Sub

You can then use Macros.MyMacro.... to assign a global hotkey

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.