2014-01-20 12:44:44 +08:00
|
|
|
" MIT License. Copyright (c) 2013-2014 Bailey Ling.
|
2013-08-19 02:34:02 +08: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 22:45:04 +08:00
|
|
|
let s:has_vcscommand = get(g:, 'airline#extensions#branch#use_vcscommand', 0) && exists('*VCSCommandGetStatusLine')
|
2013-08-06 11:07:01 +08:00
|
|
|
|
2013-11-08 07:36:59 +08:00
|
|
|
if !s:has_fugitive && !s:has_lawrencium && !s:has_vcscommand
|
2013-09-10 23:37:25 +08:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2014-04-03 08:54:43 +08:00
|
|
|
let s:git_dirs = {}
|
|
|
|
function! s:get_git_branch(path)
|
|
|
|
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)
|
|
|
|
let name = ''
|
|
|
|
else
|
|
|
|
try
|
|
|
|
let line = join(readfile(dir . '/HEAD'))
|
2014-08-21 06:52:15 +08:00
|
|
|
if strpart(line, 0, 16) == 'ref: refs/heads/'
|
|
|
|
let name = strpart(line, 16)
|
|
|
|
else
|
|
|
|
" raw commit hash
|
|
|
|
let name = strpart(line, 0, 7)
|
|
|
|
endif
|
2014-04-03 08:54:43 +08:00
|
|
|
catch
|
|
|
|
let name = ''
|
|
|
|
endtry
|
|
|
|
endif
|
|
|
|
|
|
|
|
let s:git_dirs[a:path] = name
|
|
|
|
return name
|
|
|
|
endfunction
|
|
|
|
|
2013-12-03 13:32:54 +08:00
|
|
|
function! airline#extensions#branch#head()
|
2014-04-03 08:54:43 +08:00
|
|
|
if exists('b:airline_head') && !empty(b:airline_head)
|
2014-03-25 02:01:31 +08:00
|
|
|
return b:airline_head
|
|
|
|
endif
|
|
|
|
|
|
|
|
let b:airline_head = ''
|
2013-08-19 01:22:35 +08:00
|
|
|
|
2013-08-19 02:34:02 +08:00
|
|
|
if s:has_fugitive && !exists('b:mercurial_dir')
|
2014-08-21 06:52:15 +08:00
|
|
|
let b:airline_head = fugitive#head(7)
|
2013-08-19 02:34:02 +08:00
|
|
|
|
2014-04-03 08:54:43 +08:00
|
|
|
if empty(b:airline_head) && !exists('b:git_dir')
|
2014-04-24 01:03:03 +08:00
|
|
|
let b:airline_head = s:get_git_branch(expand("%:p:h"))
|
2013-08-19 02:34:02 +08:00
|
|
|
endif
|
2013-08-19 01:22:35 +08:00
|
|
|
endif
|
|
|
|
|
2014-03-25 02:01:31 +08:00
|
|
|
if empty(b:airline_head)
|
2013-08-19 02:34:02 +08:00
|
|
|
if s:has_lawrencium
|
2014-03-25 02:01:31 +08:00
|
|
|
let b:airline_head = lawrencium#statusline()
|
2013-08-19 01:22:35 +08:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-03-25 02:01:31 +08:00
|
|
|
if empty(b:airline_head)
|
2013-11-08 07:36:59 +08:00
|
|
|
if s:has_vcscommand
|
|
|
|
call VCSCommandEnableBufferSetup()
|
|
|
|
if exists('b:VCSCommandBufferInfo')
|
2014-03-25 02:01:31 +08:00
|
|
|
let b:airline_head = get(b:VCSCommandBufferInfo, 0, '')
|
2013-11-08 07:36:59 +08:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-03-25 02:01:31 +08:00
|
|
|
if empty(b:airline_head) || !s:check_in_path()
|
|
|
|
let b:airline_head = ''
|
|
|
|
endif
|
|
|
|
|
2014-05-22 01:41:53 +08: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
|
|
|
|
|
2014-03-25 02:01:31 +08:00
|
|
|
return b:airline_head
|
2013-12-03 13:32:54 +08:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#branch#get_head()
|
|
|
|
let head = airline#extensions#branch#head()
|
2014-01-16 12:31:07 +08:00
|
|
|
let empty_message = get(g:, 'airline#extensions#branch#empty_message',
|
|
|
|
\ get(g:, 'airline_branch_empty_message', ''))
|
|
|
|
let symbol = get(g:, 'airline#extensions#branch#symbol', g:airline_symbols.branch)
|
2013-12-03 13:32:54 +08:00
|
|
|
return empty(head)
|
2014-01-16 12:31:07 +08:00
|
|
|
\ ? empty_message
|
|
|
|
\ : printf('%s%s', empty(symbol) ? '' : symbol.(g:airline_symbols.space), head)
|
2013-08-06 12:42:59 +08:00
|
|
|
endfunction
|
|
|
|
|
2013-09-08 22:03:49 +08:00
|
|
|
function! s:check_in_path()
|
|
|
|
if !exists('b:airline_branch_path')
|
|
|
|
let root = get(b:, 'git_dir', get(b:, 'mercurial_dir', ''))
|
2014-02-26 05:36:36 +08:00
|
|
|
let bufferpath = resolve(fnamemodify(expand('%'), ':p'))
|
2013-10-02 09:36:24 +08:00
|
|
|
|
2013-10-02 22:18:33 +08: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
|
2013-10-02 09:36:24 +08:00
|
|
|
endif
|
2013-10-02 22:18:33 +08:00
|
|
|
|
2013-09-08 22:03:49 +08:00
|
|
|
let b:airline_file_in_root = stridx(bufferpath, root) > -1
|
|
|
|
endif
|
|
|
|
return b:airline_file_in_root
|
|
|
|
endfunction
|
|
|
|
|
2013-08-06 11:07:01 +08:00
|
|
|
function! airline#extensions#branch#init(ext)
|
2013-08-31 05:51:10 +08:00
|
|
|
call airline#parts#define_function('branch', 'airline#extensions#branch#get_head')
|
2013-09-08 22:03:49 +08:00
|
|
|
|
|
|
|
autocmd BufReadPost * unlet! b:airline_file_in_root
|
2014-04-03 08:54:43 +08:00
|
|
|
autocmd CursorHold,ShellCmdPost,CmdwinLeave * unlet! b:airline_head
|
2013-08-06 11:07:01 +08:00
|
|
|
endfunction
|