vim-airline/autoload/airline/extensions/branch.vim

33 lines
864 B
VimL
Raw Normal View History

" 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-08-18 17:22:35 +00:00
function! airline#extensions#branch#get_head()
let head = ''
if s:has_fugitive && !exists('b:mercurial_dir')
2013-08-18 17:22:35 +00:00
let head = fugitive#head()
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)
if s:has_lawrencium
2013-08-18 17:22:35 +00:00
let head = lawrencium#statusline()
endif
endif
return empty(head) ? g:airline_branch_empty_message : g:airline_branch_prefix.head
2013-08-06 04:42:59 +00:00
endfunction
2013-08-06 03:07:01 +00:00
function! airline#extensions#branch#init(ext)
2013-08-18 17:22:35 +00:00
let g:airline_section_b .= '%{airline#extensions#branch#get_head()}'
2013-08-06 03:07:01 +00:00
endfunction