I'm trying to play with fsharp under Ubuntu (and yes, I slowly understand that this is more than fun), I have already installed the Mono, VSCode and Ionide extension, and I can create and create F # projects. Unfortunately, when I run a simple F # script through F # Interactive:
printfn "bar"
In the terminal window, I get:
> - printfn "bar" - - ;; bar val it : unit = () F
Strange sequence ^?^?
looks like unrecognized terminal escape codes, but when I use bash from VSCode, there is nothing like that.
The more a strange sequence appears after each command executed in FSI:
> let j = 9;; val j : int = 9 > printfn "foo";; foo val it : unit = () > ^?^?
Does anyone have the same problem and know the solution (or maybe just know the solution)?
EDIT: The problem mainly occurs when executing commands using the Ionide Alt + Enter shortcut
source share