1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 23:40:06 +08:00

chore(format): format code

This commit is contained in:
Eric Wong 2024-04-16 11:30:52 +08:00
parent 1d8dbeb8bb
commit d393df8ada

View File

@ -10,8 +10,6 @@ local M = {}
local uv = vim.loop
local logger = require('spacevim.logger').derive('job')
local _jobs = {}
local _jobid = 0
@ -250,7 +248,6 @@ function M.chanclose(id, t)
if stdin and stdin:is_active() then
stdin:close()
end
elseif t == 'stdout' then
elseif t == 'stderr' then
else
@ -268,5 +265,4 @@ function M.stop(id)
local handle = jobobj.handle
handle:kill(6)
end
return M