1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 02:10:05 +08:00

feat(git): add :Git reset command

This commit is contained in:
wsdjeg 2023-08-07 22:39:31 +08:00
parent c90dc3f00c
commit d3478808e8

View File

@ -5,3 +5,37 @@
-- 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 function on_exit(id, code, single)
log.debug('git-reset exit code:' .. code .. ' single:' .. single)
if code == 0 and single == 0 then
if vim.fn.exists(':GitGutter') == 2 then
vim.cmd('GitGutter')
end
nt.notify('git reset done!')
else
nt.notify('git reset failed!')
end
end
function m.run(argv)
local cmd = { 'git', 'reset' }
if #argv == 1 and argv[1] == '%' then
cmd = { 'git', 'reset', 'HEAD', vim.fn.expand('%') }
else
for _, v in ipairs(argv) do
table.insert(cmd, v)
end
end
log.debug('git-reset cmd:' .. vim.inspect(cmd))
job.start(cmd, {
on_exit = on_exit,
})
end
return m