@@ -6,8 +6,9 @@ local nvim = vim.api
6
6
local log = require (" acid.log" )
7
7
local utils = require (" acid.utils" )
8
8
local connections = require (" acid.connections" )
9
+ local output = require (" acid.output" )
9
10
10
- local pending = {}
11
+ local job_mapping = {}
11
12
local nrepl = {}
12
13
13
14
local deps = {
@@ -104,6 +105,7 @@ nrepl.default_middlewares = {'nrepl/nrepl', 'cider/cider-nrepl', 'refactor-nrepl
104
105
-- @tparam [opt] string obj.connect -c parameter for the nrepl process
105
106
-- @tparam [opt] string obj.bind -b parameter for the nrepl process
106
107
-- @tparam [opt] boolean obj.skip_autocmd don't fire an autocmd after starting this repl
108
+ -- @tparam [opt] boolean obj.disable_output_capture disables output capturing.
107
109
-- @treturn boolean Whether it was possible to spawn a nrepl process
108
110
nrepl .start = function (obj )
109
111
local pwd = obj .pwd or vim .api .nvim_call_function (" getcwd" , {})
@@ -148,25 +150,23 @@ nrepl.start = function(obj)
148
150
addr = conn
149
151
}
150
152
151
- local ix = connections .add (conn )
153
+ local conn_id = connections .add (conn )
152
154
153
- pending [ret ] = {pwd = pwd , ix = ix }
155
+ nrepl .cache [pwd ].id = conn_id
156
+
157
+ job_mapping [ret ] = {pwd = pwd , conn = conn_id , init = false }
158
+ if obj .disable_output_capture == false then
159
+ output .buffer (conn_id )
160
+ end
154
161
return true
155
162
end
156
163
157
164
--- Stops a nrepl process managed by acid
158
165
-- @tparam table obj Configuration for the nrepl process to be stopped
159
166
-- @tparam string obj.pwd Path where the nrepl process was started
160
167
nrepl .stop = function (obj )
161
- local pwd = obj .pwd
162
-
163
- if not utils .ends_with (pwd , " /" ) then
164
- pwd = pwd .. " /"
165
- end
166
-
167
- nvim .nvim_call_function (" jobstop" , {nrepl .cache [pwd ].job })
168
- connections .unselect (pwd )
169
- connections .remove (pwd , nrepl .cache [pwd ].addr )
168
+ nvim .nvim_call_function (" jobstop" , {nrepl .cache [obj .pwd ].job })
169
+ connections .remove (nrepl .cache [obj .pwd ].id )
170
170
nrepl .cache [obj .pwd ] = nil
171
171
end
172
172
@@ -185,21 +185,25 @@ nrepl.handle = {
185
185
_store = {},
186
186
stdout = function (dt , ch )
187
187
nrepl .handle ._store [ch ] = nrepl .handle ._store [ch ] or {}
188
- if pending [ch ] ~= nil then
188
+ local job = job_mapping [ch ]
189
+
190
+ if not job .init then
189
191
for _ , ln in ipairs (dt ) do
190
192
if string.sub (ln , 1 , 20 ) == " nREPL server started" then
191
- local opts = pending [ch ]
192
193
local port = ln :match (" %d+" )
193
- connections .store [opts . ix ][2 ] = port
194
- connections .select (opts .pwd , opts . ix )
195
- pending [ch ] = nil
196
- if not nrepl .cache [opts .pwd ].skip_autocmd then
194
+ connections .store [job . conn ][2 ] = port
195
+ connections .select (job .pwd , job . conn )
196
+ job_mapping [ch ]. init = true
197
+ if not nrepl .cache [job .pwd ].skip_autocmd then
197
198
log .msg (" Connected on port" , tostring (port ))
198
199
vim .api .nvim_command (" doautocmd User AcidConnected" )
199
200
end
201
+ break
200
202
end
201
203
end
202
204
end
205
+
206
+ output .draw (job .conn , dt )
203
207
table.insert (nrepl .handle ._store [ch ], dt )
204
208
end ,
205
209
stderr = function (dt , ch )
0 commit comments