1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 15:00:06 +08:00
SpaceVim/bundle/git.vim/autoload/git/add.vim

53 lines
1.2 KiB
VimL
Raw Normal View History

2021-01-02 18:15:08 +08:00
""
" @section git-add, add
" @parentsection commands
" This commands is to add file contents to the index. For example, add current
" file to the index.
" >
" :Git add %
" <
let s:JOB = SpaceVim#api#import('job')
let s:NOTI = SpaceVim#api#import('notify')
2021-01-02 18:15:08 +08:00
2021-08-27 10:25:02 +08:00
function! s:replace_argvs(argvs) abort
let argvs = []
for argv in a:argvs
if argv ==# '%'
call insert(argvs, expand('%'))
2021-01-02 18:15:08 +08:00
else
2021-08-27 10:25:02 +08:00
call insert(argvs, argv)
2021-01-02 18:15:08 +08:00
endif
2021-08-27 10:25:02 +08:00
endfor
return argvs
endfunction
function! git#add#run(argvs) abort
let cmd = ['git', 'add'] + s:replace_argvs(a:argvs)
call git#logger#debug('git-add cmd:' . string(cmd))
2021-08-27 10:25:02 +08:00
call s:JOB.start(cmd,
\ {
\ 'on_exit' : function('s:on_exit'),
\ }
\ )
2021-01-02 18:15:08 +08:00
endfunction
function! s:on_exit(id, data, event) abort
call git#logger#debug('git-add exit data:' . string(a:data))
2021-08-27 10:25:02 +08:00
if a:data ==# 0
if exists(':GitGutter')
GitGutter
2021-01-02 18:15:08 +08:00
endif
call s:NOTI.notify('stage files done!')
2021-08-27 10:25:02 +08:00
else
call s:NOTI.notify('stage files failed!')
2021-08-27 10:25:02 +08:00
endif
2021-01-02 18:15:08 +08:00
endfunction
2021-08-27 10:25:02 +08:00
function! git#add#complete(ArgLead, CmdLine, CursorPos) abort
2021-01-02 18:15:08 +08:00
2021-08-27 10:25:02 +08:00
return "%\n" . join(getcompletion(a:ArgLead, 'file'), "\n")
2021-01-02 18:15:08 +08:00
endfunction