We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14adf4e commit 0ca7d9cCopy full SHA for 0ca7d9c
src/Components/Fsi.fs
@@ -53,14 +53,15 @@ module Fsi =
53
| _ -> msg
54
55
fsiProcess |> Option.iter (fun fp -> fp.stdin.write(msg', "utf-8" |> unbox) |> ignore)
56
- commands.executeCommand "cursorDown" |> ignore
+
57
58
let private sendLine () =
59
let editor = window.activeTextEditor
60
let file = editor.document.fileName
61
let pos = editor.selection.start
62
let line = editor.document.lineAt pos
63
send line.text file
64
+ commands.executeCommand "cursorDown" |> ignore
65
66
let private sendSelection () =
67
0 commit comments