Skip to content

Commit fe3184f

Browse files
committed
Fix non-debug connection bug
1 parent bde9da3 commit fe3184f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/neovim_client/nvim.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129

130130
(defn new
131131
"Connect to msgpack-rpc channel via standard io or TCP socket."
132-
([] (new* System/in System/out) false)
132+
([] (new* System/in System/out false))
133133
([host port]
134134
(log/info "plugin host connecting to nvim at " host ":" port)
135135
(let [socket (java.net.Socket. host port)]

0 commit comments

Comments
 (0)