diff --git a/daemon.fs b/daemon.fs index 6b96f05..c816a84 100644 --- a/daemon.fs +++ b/daemon.fs @@ -163,7 +163,7 @@ let daemon (pname: string option) (nvim: string) (stderrenc: Text.Encoding) = } 0 -let fvrConnect (stdin: Stream) (verb: FVimRemoteVerb) = +let fvrConnect (stdin: Stream) (stdout: Stream) (verb: FVimRemoteVerb) = let payload = verb |> Json.serialize @@ -174,7 +174,7 @@ let fvrConnect (stdin: Stream) (verb: FVimRemoteVerb) = stdin.Write(intbuf, 0, intbuf.Length) stdin.Write(payload, 0, payload.Length) stdin.Flush() - Async.StartAsTask(read stdin (intbuf.AsMemory())).Wait() + Async.StartAsTask(read stdout (intbuf.AsMemory())).Wait() toInt32LE intbuf with ex -> trace "%O" ex diff --git a/neovim.fs b/neovim.fs index 1ecda7c..fdca422 100644 --- a/neovim.fs +++ b/neovim.fs @@ -75,7 +75,7 @@ type Nvim() = let pipe = new System.IO.Pipes.NamedPipeClientStream(".", name, IO.Pipes.PipeDirection.InOut, IO.Pipes.PipeOptions.Asynchronous, TokenImpersonationLevel.Impersonation) pipe.Connect() trace "Connected, sending session request..." - let id = fvrConnect pipe verb + let id = fvrConnect pipe pipe verb if id < 0 then pipe.Dispose() failwithf "Remote daemon closed the connection with error code %d" id @@ -86,7 +86,7 @@ type Nvim() = trace "Connecting to remote fvr session '%s'" paddr let proc = newProcess prog (args @ [paddr]) Text.Encoding.UTF8 proc.Start() |> ignore - let id = fvrConnect proc.StandardInput.BaseStream verb + let id = fvrConnect proc.StandardInput.BaseStream proc.StandardOutput.BaseStream verb if id < 0 then proc.Kill() failwithf "Remote daemon closed the connection with error code %d" id