From 629a8c304de5d597aee42febf988140ae2806f6e Mon Sep 17 00:00:00 2001 From: Yatao Li Date: Mon, 26 Aug 2019 16:18:15 +0800 Subject: [PATCH] update deps --- NuGet.Config | 5 +---- Properties/launchSettings.json | 3 +-- fvim.fsproj | 8 ++++---- neovim/neovim.process.fs | 2 +- 4 files changed, 7 insertions(+), 11 deletions(-) diff --git a/NuGet.Config b/NuGet.Config index cd29dbf..f072f57 100644 --- a/NuGet.Config +++ b/NuGet.Config @@ -1,6 +1,3 @@ - + - - - diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json index 986c1c8..557e9d5 100644 --- a/Properties/launchSettings.json +++ b/Properties/launchSettings.json @@ -1,8 +1,7 @@ { "profiles": { "fvim": { - "commandName": "Project", - "commandLineArgs": "--connect localhost:9527" + "commandName": "Project" } } } \ No newline at end of file diff --git a/fvim.fsproj b/fvim.fsproj index 4b6e837..6b605c3 100644 --- a/fvim.fsproj +++ b/fvim.fsproj @@ -66,10 +66,10 @@ - + - - + + @@ -89,7 +89,7 @@ - + diff --git a/neovim/neovim.process.fs b/neovim/neovim.process.fs index 0df09eb..4c8aa65 100644 --- a/neovim/neovim.process.fs +++ b/neovim/neovim.process.fs @@ -111,7 +111,7 @@ type Nvim() = Task.Factory.StartNew(fun () -> trace "begin read loop" let mutable ex = false - while not ex && serverExitCode().IsNone && not cancel.IsCancellationRequested do + while not ex && not cancel.IsCancellationRequested do try let data = MessagePackSerializer.Deserialize(stdout, true) ob.OnNext(data)