chore: bump plugins version (#2723)

This commit is contained in:
github-actions[bot] 2022-07-23 14:16:43 +02:00 committed by GitHub
parent 48320e5f88
commit 6ab3e8a739
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 71 additions and 71 deletions

View file

@ -13,16 +13,14 @@ local function git_cmd(opts)
opts.cwd = opts.cwd or get_lvim_base_dir()
local stderr = {}
local stdout, ret = Job
:new({
command = "git",
args = opts.args,
cwd = opts.cwd,
on_stderr = function(_, data)
table.insert(stderr, data)
end,
})
:sync()
local stdout, ret = Job:new({
command = "git",
args = opts.args,
cwd = opts.cwd,
on_stderr = function(_, data)
table.insert(stderr, data)
end,
}):sync()
if not vim.tbl_isempty(stderr) then
Log:debug(stderr)