Skip to content

Commit ea54d62

Browse files
Add new line before ;; when sending to FSI
1 parent 21f74f7 commit ea54d62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/Fsi.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module Fsi =
4040
let private send (msg : string) file =
4141

4242
if fsiProcess.IsNone then start ()
43-
let msg = msg + ";;\n"
43+
let msg = msg + "\n;;\n"
4444
fsiOutput |> Option.iter (fun outChannel -> outChannel.append msg)
4545
let msg' =
4646
try

0 commit comments

Comments
 (0)