In Visual Studio 2010 pressing Alt + Enter should open F# Interactive?

I'm selecting F# code, and pressing Alt + Enter, but nothing happens!

link|improve this question

66% accept rate
@abatishchev I will. – stacker Jun 5 '10 at 20:56
feedback

4 Answers

up vote 5 down vote accepted

The keybindings depend on the global environment settings (and you can also change them), but:

  • The default keybinding for opening F# interacative (if it is closed) is Ctrl + Alt + F. Otherwise, you can find the window in View -> Other Windows -> F# Interactive
  • Then you should be able to use Alt + Enter to interactively execute the selected text.
link|improve this answer
4  
ReSharper, in particular, likes to stomp on Alt + Enter. I remapped the "send to F# interactive" to Alt + ; because I'm used to using the ReSharper key bindings in C# code. – Joel Mueller Jun 5 '10 at 16:48
Thanks @Joel, I;m using your solution. – stacker Jun 5 '10 at 20:55
feedback

No. It copies and executes the selected texts to the interactive window. You need to already have opened the interactive session.

link|improve this answer
feedback

Try the menu: "View\F# Interactive" (if in F# profile) or "View\Other Windows\F# Interactive" (if in a different profile).

link|improve this answer
feedback

The command to assign (in Tools-Options-Keyboard) is called

EditorContextMenus.CodeWindow.SendToInteractive

By default, the hot-key combination, within a TextEditor is Alt+Enter. I like Joel's idea of remapping it (since ReSharper stole that one) to Alt+;.

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.