1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-19 08:13:44 +08:00
SpaceVim/bundle/git.vim/lua/git/command/fetch.lua
2024-12-17 19:13:47 +08:00

65 lines
1.6 KiB
Lua

--=============================================================================
-- fetch.lua --- Git fetch
-- Copyright 2023 Eric Wong
-- Author: Eric Wong < wsdjeg@outlook.com >
-- URL: https://spacevim.org
-- License: GPLv3
--=============================================================================
local M = {}
local job = require('spacevim.api.job')
local nt = require('spacevim.api.notify')
local log = require('git.log')
local stddata = {}
local function on_exit(id, code, single)
log.debug('git-fetch exit code:' .. code .. ' single:' .. single)
if code == 0 and single == 0 then
nt.notify('fetch done!')
else
nt.notify(table.concat(stddata, '\n'), 'warningmsg')
end
end
local function on_std(id, data)
for _, v in ipairs(data) do
table.insert(stddata, v)
end
end
function M.run(argv)
local cmd = { 'git', 'fetch' }
for _, v in ipairs(argv) do
table.insert(cmd, v)
end
log.debug('git-fetch cmd:' .. vim.inspect(cmd))
stddata = {}
job.start(cmd, {
on_exit = on_exit,
on_stdout = on_std,
on_stderr = on_std,
})
end
local function get_remotes()
return vim.tbl_map(function(t)
return vim.fn.trim(t)
end, vim.fn.systemlist('git remote'))
end
function M.complete(ArgLead, CmdLine, CursorPos)
if vim.startswith(ArgLead, '-') then
return table.concat({ '--all', '--multiple' }, '\n')
end
local str = string.sub(CmdLine, 1, CursorPos)
if vim.regex([[^Git\s\+fetch\s\+[^ ]*$]]):match_str(str) then
return table.concat(get_remotes(), '\n')
else
return ''
end
end
return M