2016-01-15 02:38:38 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
2013-08-18 18:34:02 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
let s:has_fugitive = exists('*fugitive#head')
|
|
|
|
let s:has_lawrencium = exists('*lawrencium#statusline')
|
2013-11-12 14:45:04 +00:00
|
|
|
let s:has_vcscommand = get(g:, 'airline#extensions#branch#use_vcscommand', 0) && exists('*VCSCommandGetStatusLine')
|
2013-08-06 03:07:01 +00:00
|
|
|
|
2013-11-07 23:36:59 +00:00
|
|
|
if !s:has_fugitive && !s:has_lawrencium && !s:has_vcscommand
|
2013-09-10 15:37:25 +00:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2016-02-02 21:45:47 +00:00
|
|
|
let s:git_dirs = {}
|
|
|
|
let s:untracked_git = {}
|
|
|
|
let s:untracked_hg = {}
|
|
|
|
|
2015-02-28 03:04:13 +00:00
|
|
|
let s:head_format = get(g:, 'airline#extensions#branch#format', 0)
|
|
|
|
if s:head_format == 1
|
|
|
|
function! s:format_name(name)
|
|
|
|
return fnamemodify(a:name, ':t')
|
|
|
|
endfunction
|
2015-11-19 10:03:54 +00:00
|
|
|
elseif s:head_format == 2
|
|
|
|
function! s:format_name(name)
|
|
|
|
return pathshorten(a:name)
|
|
|
|
endfunction
|
2015-02-28 03:04:13 +00:00
|
|
|
elseif type(s:head_format) == type('')
|
|
|
|
function! s:format_name(name)
|
|
|
|
return call(s:head_format, [a:name])
|
|
|
|
endfunction
|
|
|
|
else
|
|
|
|
function! s:format_name(name)
|
|
|
|
return a:name
|
|
|
|
endfunction
|
|
|
|
endif
|
|
|
|
|
2014-04-03 00:54:43 +00:00
|
|
|
function! s:get_git_branch(path)
|
2016-01-29 12:11:14 +00:00
|
|
|
if !s:has_fugitive
|
|
|
|
return ''
|
2014-04-03 00:54:43 +00:00
|
|
|
endif
|
|
|
|
|
2016-01-29 12:11:14 +00:00
|
|
|
let name = fugitive#head(7)
|
|
|
|
if empty(name)
|
|
|
|
if has_key(s:git_dirs, a:path)
|
|
|
|
return s:git_dirs[a:path]
|
|
|
|
endif
|
|
|
|
|
|
|
|
let dir = fugitive#extract_git_dir(a:path)
|
|
|
|
if empty(dir)
|
2014-04-03 00:54:43 +00:00
|
|
|
let name = ''
|
2016-01-29 12:11:14 +00:00
|
|
|
else
|
|
|
|
try
|
|
|
|
let line = join(readfile(dir . '/HEAD'))
|
|
|
|
if strpart(line, 0, 16) == 'ref: refs/heads/'
|
|
|
|
let name = strpart(line, 16)
|
|
|
|
else
|
|
|
|
" raw commit hash
|
|
|
|
let name = strpart(line, 0, 7)
|
|
|
|
endif
|
|
|
|
catch
|
|
|
|
let name = ''
|
|
|
|
endtry
|
|
|
|
endif
|
2014-04-03 00:54:43 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
let s:git_dirs[a:path] = name
|
|
|
|
return name
|
|
|
|
endfunction
|
|
|
|
|
2016-02-02 21:45:47 +00:00
|
|
|
function! s:get_git_untracked(file)
|
|
|
|
let untracked = ''
|
|
|
|
if empty(a:file)
|
|
|
|
return untracked
|
|
|
|
endif
|
|
|
|
if has_key(s:untracked_git, a:file)
|
|
|
|
let untracked = s:untracked_git[a:file]
|
|
|
|
else
|
2016-02-05 22:07:47 +00:00
|
|
|
let output = system('git status --porcelain -- '. a:file)
|
|
|
|
if output[0:1] is# '??' && output[3:-2] is? a:file
|
|
|
|
let untracked = get(g:, 'airline#extensions#branch#notexists', g:airline_symbols.notexists)
|
|
|
|
endif
|
2016-02-02 21:45:47 +00:00
|
|
|
let s:untracked_git[a:file] = untracked
|
|
|
|
endif
|
|
|
|
return untracked
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:get_hg_untracked(file)
|
|
|
|
if s:has_lawrencium
|
|
|
|
" delete cache when unlet b:airline head?
|
|
|
|
let untracked = ''
|
|
|
|
if empty(a:file)
|
|
|
|
return untracked
|
|
|
|
endif
|
|
|
|
if has_key(s:untracked_hg, a:file)
|
|
|
|
let untracked = s:untracked_hg[a:file]
|
|
|
|
else
|
|
|
|
let untracked = (system('hg status -u -- '. a:file)[0] is# '?' ?
|
|
|
|
\ get(g:, 'airline#extensions#branch#notexists', g:airline_symbols.notexists) : '')
|
|
|
|
let s:untracked_hg[a:file] = untracked
|
|
|
|
endif
|
|
|
|
return untracked
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2016-01-29 12:11:14 +00:00
|
|
|
function! s:get_hg_branch()
|
|
|
|
if s:has_lawrencium
|
2016-02-14 16:05:53 +00:00
|
|
|
let stl=lawrencium#statusline()
|
2016-02-11 21:44:12 +00:00
|
|
|
let mq=system('hg qtop')
|
2016-02-14 16:05:53 +00:00
|
|
|
if v:shell_error==0 && !empty(stl)
|
|
|
|
let mq=matchstr(mq, '.*\ze\n')
|
|
|
|
return printf("%s/%s", stl, mq)
|
2016-02-11 21:44:12 +00:00
|
|
|
endif
|
2016-02-14 16:05:53 +00:00
|
|
|
return stl
|
2016-01-29 12:11:14 +00:00
|
|
|
endif
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
2013-12-03 05:32:54 +00:00
|
|
|
function! airline#extensions#branch#head()
|
2014-04-03 00:54:43 +00:00
|
|
|
if exists('b:airline_head') && !empty(b:airline_head)
|
2014-03-24 18:01:31 +00:00
|
|
|
return b:airline_head
|
|
|
|
endif
|
|
|
|
|
|
|
|
let b:airline_head = ''
|
2016-01-29 12:11:14 +00:00
|
|
|
let l:heads = {}
|
|
|
|
let l:vcs_priority = get(g:, "airline#extensions#branch#vcs_priority", ["git", "mercurial"])
|
2014-08-15 20:07:18 +00:00
|
|
|
let found_fugitive_head = 0
|
2013-08-18 17:22:35 +00:00
|
|
|
|
2016-01-29 12:11:14 +00:00
|
|
|
let l:git_head = s:get_git_branch(expand("%:p:h"))
|
|
|
|
let l:hg_head = s:get_hg_branch()
|
2013-08-18 18:34:02 +00:00
|
|
|
|
2016-01-29 12:11:14 +00:00
|
|
|
if !empty(l:git_head)
|
|
|
|
let found_fugitive_head = 1
|
|
|
|
let l:heads.git = (!empty(l:hg_head) ? "git:" : '') . s:format_name(l:git_head)
|
2016-02-02 21:45:47 +00:00
|
|
|
let l:git_untracked = s:get_git_untracked(expand("%:p"))
|
|
|
|
let l:heads.git .= l:git_untracked
|
2013-08-18 17:22:35 +00:00
|
|
|
endif
|
|
|
|
|
2016-01-29 12:11:14 +00:00
|
|
|
if !empty(l:hg_head)
|
|
|
|
let l:heads.mercurial = (!empty(l:git_head) ? "hg:" : '') . s:format_name(l:hg_head)
|
2016-02-02 21:45:47 +00:00
|
|
|
let l:hg_untracked = s:get_hg_untracked(expand("%:p"))
|
|
|
|
let l:heads.mercurial.= l:hg_untracked
|
2013-08-18 17:22:35 +00:00
|
|
|
endif
|
|
|
|
|
2016-01-29 12:11:14 +00:00
|
|
|
if empty(l:heads)
|
2013-11-07 23:36:59 +00:00
|
|
|
if s:has_vcscommand
|
|
|
|
call VCSCommandEnableBufferSetup()
|
|
|
|
if exists('b:VCSCommandBufferInfo')
|
2016-01-29 12:11:14 +00:00
|
|
|
let b:airline_head = s:format_name(get(b:VCSCommandBufferInfo, 0, ''))
|
2013-11-07 23:36:59 +00:00
|
|
|
endif
|
|
|
|
endif
|
2016-01-29 12:11:14 +00:00
|
|
|
else
|
|
|
|
for vcs in l:vcs_priority
|
|
|
|
if has_key(l:heads, vcs)
|
|
|
|
if !empty(b:airline_head)
|
|
|
|
let b:airline_head = b:airline_head . " | "
|
|
|
|
endif
|
|
|
|
let b:airline_head = b:airline_head . l:heads[vcs]
|
|
|
|
endif
|
|
|
|
endfor
|
2013-11-07 23:36:59 +00:00
|
|
|
endif
|
|
|
|
|
2014-05-21 17:41:53 +00:00
|
|
|
if exists("g:airline#extensions#branch#displayed_head_limit")
|
|
|
|
let w:displayed_head_limit = g:airline#extensions#branch#displayed_head_limit
|
|
|
|
if len(b:airline_head) > w:displayed_head_limit - 1
|
|
|
|
let b:airline_head = b:airline_head[0:w:displayed_head_limit - 1].'…'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-01-29 12:11:14 +00:00
|
|
|
if empty(b:airline_head) || !found_fugitive_head && !s:check_in_path()
|
|
|
|
let b:airline_head = ''
|
|
|
|
endif
|
2014-03-24 18:01:31 +00:00
|
|
|
return b:airline_head
|
2013-12-03 05:32:54 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#branch#get_head()
|
|
|
|
let head = airline#extensions#branch#head()
|
2016-01-28 14:54:14 +00:00
|
|
|
let empty_message = get(g:, 'airline#extensions#branch#empty_message', '')
|
2014-01-16 04:31:07 +00:00
|
|
|
let symbol = get(g:, 'airline#extensions#branch#symbol', g:airline_symbols.branch)
|
2013-12-03 05:32:54 +00:00
|
|
|
return empty(head)
|
2014-01-16 04:31:07 +00:00
|
|
|
\ ? empty_message
|
|
|
|
\ : printf('%s%s', empty(symbol) ? '' : symbol.(g:airline_symbols.space), head)
|
2013-08-06 04:42:59 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-09-08 14:03:49 +00:00
|
|
|
function! s:check_in_path()
|
|
|
|
if !exists('b:airline_branch_path')
|
|
|
|
let root = get(b:, 'git_dir', get(b:, 'mercurial_dir', ''))
|
2014-02-25 21:36:36 +00:00
|
|
|
let bufferpath = resolve(fnamemodify(expand('%'), ':p'))
|
2013-10-02 01:36:24 +00:00
|
|
|
|
2013-10-02 14:18:33 +00:00
|
|
|
if !filereadable(root) "not a file
|
|
|
|
" if .git is a directory, it's the old submodule format
|
|
|
|
if match(root, '\.git$') >= 0
|
|
|
|
let root = expand(fnamemodify(root, ':h'))
|
|
|
|
else
|
|
|
|
" else it's the newer format, and we need to guesstimate
|
|
|
|
let pattern = '\.git\(\\\|\/\)modules\(\\\|\/\)'
|
|
|
|
if match(root, pattern) >= 0
|
|
|
|
let root = substitute(root, pattern, '', '')
|
|
|
|
endif
|
2015-01-04 00:38:17 +00:00
|
|
|
endif
|
2013-10-02 01:36:24 +00:00
|
|
|
endif
|
2013-10-02 14:18:33 +00:00
|
|
|
|
2013-09-08 14:03:49 +00:00
|
|
|
let b:airline_file_in_root = stridx(bufferpath, root) > -1
|
|
|
|
endif
|
|
|
|
return b:airline_file_in_root
|
|
|
|
endfunction
|
|
|
|
|
2016-02-02 21:45:47 +00:00
|
|
|
function! s:reset_untracked_cache()
|
|
|
|
if exists("s:untracked_git")
|
|
|
|
let s:untracked_git={}
|
|
|
|
endif
|
|
|
|
if exists("s:untracked_hg")
|
|
|
|
let s:untracked_hg={}
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-08-06 03:07:01 +00:00
|
|
|
function! airline#extensions#branch#init(ext)
|
2013-08-30 21:51:10 +00:00
|
|
|
call airline#parts#define_function('branch', 'airline#extensions#branch#get_head')
|
2013-09-08 14:03:49 +00:00
|
|
|
|
|
|
|
autocmd BufReadPost * unlet! b:airline_file_in_root
|
2014-04-03 00:54:43 +00:00
|
|
|
autocmd CursorHold,ShellCmdPost,CmdwinLeave * unlet! b:airline_head
|
2016-01-29 14:29:40 +00:00
|
|
|
autocmd User AirlineBeforeRefresh unlet! b:airline_head
|
2016-02-02 21:45:47 +00:00
|
|
|
autocmd BufWritePost,ShellCmdPost * call s:reset_untracked_cache()
|
2013-08-06 03:07:01 +00:00
|
|
|
endfunction
|