2013-08-18 18:34:02 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
let s:has_fugitive = exists('*fugitive#head')
|
|
|
|
let s:has_fugitive_detect = exists('*fugitive#detect')
|
|
|
|
let s:has_lawrencium = exists('*lawrencium#statusline')
|
2013-08-06 03:07:01 +00:00
|
|
|
|
2013-09-10 15:37:25 +00:00
|
|
|
if !s:has_fugitive && !s:has_lawrencium
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
let s:empty_message = get(g:, 'airline#extensions#branch#empty_message',
|
|
|
|
\ get(g:, 'airline_branch_empty_message', ''))
|
|
|
|
let s:symbol = get(g:, 'airline#extensions#branch#symbol', g:airline_symbols.branch)
|
|
|
|
|
2013-08-18 17:22:35 +00:00
|
|
|
function! airline#extensions#branch#get_head()
|
|
|
|
let head = ''
|
|
|
|
|
2013-08-18 18:34:02 +00:00
|
|
|
if s:has_fugitive && !exists('b:mercurial_dir')
|
2013-08-18 17:22:35 +00:00
|
|
|
let head = fugitive#head()
|
2013-08-18 18:34:02 +00:00
|
|
|
|
|
|
|
if empty(head) && s:has_fugitive_detect && !exists('b:git_dir')
|
|
|
|
call fugitive#detect(getcwd())
|
|
|
|
let head = fugitive#head()
|
|
|
|
endif
|
2013-08-18 17:22:35 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if empty(head)
|
2013-08-18 18:34:02 +00:00
|
|
|
if s:has_lawrencium
|
2013-08-18 17:22:35 +00:00
|
|
|
let head = lawrencium#statusline()
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-09-08 14:03:49 +00:00
|
|
|
return empty(head) || !s:check_in_path()
|
2013-08-31 02:44:20 +00:00
|
|
|
\ ? s:empty_message
|
2013-09-19 02:23:50 +00:00
|
|
|
\ : printf('%s%s', empty(s:symbol) ? '' : s: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', ''))
|
|
|
|
let bufferpath = resolve(fnamemodify(expand('%'), ':p:h'))
|
2013-09-13 19:14:56 +00:00
|
|
|
let root = expand(fnamemodify(root, ':h'))
|
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
|
|
|
|
|
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
|
2013-08-06 03:07:01 +00:00
|
|
|
endfunction
|
|
|
|
|