Is there any way to clear the F# interactive window in VS2010?
#cls;; and #clear;; don't work.
Quitting with #quit;; leads to the restart of F# interactive without clearing the window content.
Attempt to delete text with "delete" or "backspace" gives an error message that the text is read-only.
Clear All? – pad Feb 10 at 13:29fsito do so. But Visual Studio offers a context menu to help in this case. Alternatively, if you useReset Sessionmenu, F# Interactive console is also cleared. – pad Feb 10 at 13:35fsifor debugging and use verbose logging in my F# code -- it would be helpful to be able to delete the content programmatically from script. But I failed to find even the context menu trick while googling for this issue. – Alexander Galkin Feb 10 at 14:39