2013-08-18 14:34:02 -04:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2013-08-19 19:51:30 -04:00
|
|
|
let s:empty_message = get(g:, 'airline#extensions#branch#empty_message',
|
|
|
|
\ get(g:, 'airline_branch_empty_message', ''))
|
2013-08-27 10:12:03 -04:00
|
|
|
let s:symbol = get(g:, 'airline#extensions#branch#symbol', g:airline_symbols.branch)
|
2013-08-19 19:51:30 -04:00
|
|
|
|
2013-08-18 14:34:02 -04:00
|
|
|
let s:has_fugitive = exists('*fugitive#head')
|
|
|
|
let s:has_fugitive_detect = exists('*fugitive#detect')
|
|
|
|
let s:has_lawrencium = exists('*lawrencium#statusline')
|
2013-08-05 23:07:01 -04:00
|
|
|
|
2013-08-18 13:22:35 -04:00
|
|
|
function! airline#extensions#branch#get_head()
|
|
|
|
let head = ''
|
|
|
|
|
2013-08-18 14:34:02 -04:00
|
|
|
if s:has_fugitive && !exists('b:mercurial_dir')
|
2013-08-18 13:22:35 -04:00
|
|
|
let head = fugitive#head()
|
2013-08-18 14:34:02 -04:00
|
|
|
|
|
|
|
if empty(head) && s:has_fugitive_detect && !exists('b:git_dir')
|
|
|
|
call fugitive#detect(getcwd())
|
|
|
|
let head = fugitive#head()
|
|
|
|
endif
|
2013-08-18 13:22:35 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
if empty(head)
|
2013-08-18 14:34:02 -04:00
|
|
|
if s:has_lawrencium
|
2013-08-18 13:22:35 -04:00
|
|
|
let head = lawrencium#statusline()
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-08-26 23:34:02 -04:00
|
|
|
return empty(head) ? s:empty_message : s:symbol.' '.head
|
2013-08-06 00:42:59 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-08-05 23:07:01 -04:00
|
|
|
function! airline#extensions#branch#init(ext)
|
2013-08-28 20:15:07 -04:00
|
|
|
let g:airline_parts.branch = 'airline#extensions#branch#get_head'
|
2013-08-05 23:07:01 -04:00
|
|
|
endfunction
|
|
|
|
|