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 c2b3055 commit af161e1Copy full SHA for af161e1
src/neovim_client/rpc.clj
@@ -85,9 +85,9 @@
85
:in-chan in-chan
86
:message-table message-table
87
:method-table method-table}]
88
- (async/go-loop
+ (future (loop
89
[]
90
- (when-let [msg (async/<! in-chan)]
+ (when-let [msg (async/<!! in-chan)]
91
(condp = (msg-type msg)
92
93
msg/+response+
@@ -100,7 +100,7 @@
100
result (f msg)]
101
(send-message-async!
102
component (->response-msg (id msg) result) nil)))
103
- (recur)))
+ (recur))))
104
component))
105
106
(defn new
0 commit comments