When developing in F #, there are two main actions that I keep doing all the time:
Switch between development (code window) and F # Interactive. I would like to know if there are any hotkeys that will allow me to switch between them, so I should not use a mouse? This certainly violates my workflow.
I feel the desire to constantly clarify the FSI (the option you will find when the right mouse button and selecting Clear all commands). I looked in the settings of the Visual Studio keyboard, but I can not find Clear all the commands in the command list.
Are there hotkeys for any of these actions? If not, would they define macros for them in any way?
thanks
CTRL + Alt + F activates FSI. This, in a macro, would also do this:
DTE.Windows.Item("{DEE22B65-9761-4A26-8FB2-759B971D6DFC}").Activate() 'F# Interactive
CTRL + Tab will bring you back to the editor (assuming you were before).