mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 19:10:06 +08:00
73 lines
1.8 KiB
VimL
73 lines
1.8 KiB
VimL
let s:JOB = SpaceVim#api#import('job')
|
|
let s:STR = SpaceVim#api#import('data#string')
|
|
|
|
function! git#branch#run(args)
|
|
if len(a:args) == 0
|
|
call git#branch#manager#open()
|
|
return
|
|
else
|
|
let cmd = ['git', 'branch'] + a:args
|
|
endif
|
|
call git#logger#info('git-branch cmd:' . string(cmd))
|
|
call s:JOB.start(cmd,
|
|
\ {
|
|
\ 'on_stderr' : function('s:on_stderr'),
|
|
\ 'on_stdout' : function('s:on_stdout'),
|
|
\ 'on_exit' : function('s:on_exit'),
|
|
\ }
|
|
\ )
|
|
|
|
endfunction
|
|
|
|
function! s:on_stdout(id, data, event) abort
|
|
for line in filter(a:data, '!empty(v:val)')
|
|
exe 'Echo ' . line
|
|
endfor
|
|
endfunction
|
|
|
|
function! s:on_stderr(id, data, event) abort
|
|
for line in filter(a:data, '!empty(v:val)')
|
|
exe 'Echoerr ' . line
|
|
endfor
|
|
endfunction
|
|
function! s:on_exit(id, data, event) abort
|
|
call git#logger#info('git-branch exit data:' . string(a:data))
|
|
if a:data ==# 0
|
|
echo 'done!'
|
|
else
|
|
echo 'failed!'
|
|
endif
|
|
endfunction
|
|
|
|
function! git#branch#complete(ArgLead, CmdLine, CursorPos)
|
|
|
|
return "%\n" . join(getcompletion(a:ArgLead, 'file'), "\n")
|
|
|
|
endfunction
|
|
|
|
let s:branch = ''
|
|
function! s:update_branch_name() abort
|
|
let cmd = 'git rev-parse --abbrev-ref HEAD'
|
|
call s:JOB.start(cmd,
|
|
\ {
|
|
\ 'on_stdout' : function('s:on_stdout_show_branch'),
|
|
\ }
|
|
\ )
|
|
endfunction
|
|
function! s:on_stdout_show_branch(id, data, event) abort
|
|
let b = s:STR.trim(join(a:data, ""))
|
|
if !empty(b)
|
|
let s:branch = b
|
|
endif
|
|
endfunction
|
|
function! git#branch#current()
|
|
if empty(s:branch)
|
|
call s:update_branch_name()
|
|
endif
|
|
return s:branch
|
|
endfunction
|
|
|
|
function! git#branch#detect()
|
|
call s:update_branch_name()
|
|
endfunction
|