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.

link|improve this question

2  
Is there any problem with Right mouse click -> Clear All? – pad Feb 10 at 13:29
@pad The only problem is that I didn't find it on my own. Strangely, I couldn't find it by decent googling either -- hence started a thread here. – Alexander Galkin Feb 10 at 13:33
The answer is that there is no directive in fsi to do so. But Visual Studio offers a context menu to help in this case. Alternatively, if you use Reset Session menu, F# Interactive console is also cleared. – pad Feb 10 at 13:35
@pad Actually it is a pity, because I use fsi for 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
If you want to get rid of annoying declaration, this thread stackoverflow.com/questions/2971685/… could be helpful. – pad Feb 10 at 14:48
feedback

2 Answers

up vote 4 down vote accepted

Clear All

. Right Click and Clear All.

link|improve this answer
feedback

Would printing 30 newlines get what you want? Just throwing out an idea.

link|improve this answer
That's actually not a bad idea Brian. I mean I know what he's asking about and there are times when I'd like a "#clear;;" in FSI myself. :-) – Onorio Catenacci Feb 10 at 18:13
2  
@OnorioCatenacci: in fsi.exe, System.Console.Clear();; works. – kkm Feb 11 at 9:07
@kkm Thanks. That's a great tip. – Onorio Catenacci Feb 11 at 16:18
feedback

Your Answer

 
or
required, but never shown

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