1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-19 18:03:45 +08:00
SpaceVim/bundle/git.vim/lua/git/command/checkout.lua
2024-12-09 22:29:20 +08:00

49 lines
1.1 KiB
Lua

local M = {}
local job = require('spacevim.api.job')
local nt = require('spacevim.api.notify')
local log = require('git.log')
local branch = require('git.command.branch')
local branch_ui = require('git.ui.branch')
local function on_exit(id, code, single)
log.debug('git-checkout exit code:' .. code .. ' single:' .. single)
if code == 0 and single == 0 then
vim.cmd('silent! checktime')
branch.detect()
branch_ui.update()
nt.notify('checkout done.')
else
nt.notify('checkout failed.', 'WarningMsg')
end
end
function M.run(argv)
local cmd = { 'git', 'checkout' }
for _, v in ipairs(argv) do
table.insert(cmd, v)
end
log.info('git checkout cmd:' .. vim.inspect(cmd))
job.start(cmd, { on_exit = on_exit })
end
function M.complete(arglead, cmdline, cursorpos)
if vim.startswith(arglead, '-') then
return table.concat({ '-b', '-m' }, '\n')
end
local branchs = vim.fn.systemlist('git branch')
return table.concat(
vim.tbl_map(
function(t)
return vim.fn.trim(t)
end,
vim.tbl_filter(function(t)
return not vim.startswith(t, '*')
end, branchs)
),
'\n'
)
end
return M