I'm trying to quiet down the F# Interactive terminal in VS Code. In my search I ran into commands such as fsi.ShowDeclarationVariables <- false, but I haven't found documentation of all such commands available. Can anyone point me in the right direction?
Thanks.
There is some documentation for the members of the
fsiobject available in the F# docs. This is a bit tricky to find, becausefsiis a value of typeInteractiveSessionand so you need to look for the type, rather than just forfsivalue.It is also worth noting that, in addition to using reflection to see the members, you can also see all members if you type
fsifollowed by.(at least in Visual Studio) and the names of the members are fairly descriptive (though figuring out the details is a bit fiddly sometimes).I'm not sure if the documentation is complete, but the docs are hosted on GitHub and anyone can contribute to improve them and add examples.