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

20 lines
650 B
VimL
Raw Normal View History

2013-08-05 23:07:01 -04:00
" MIT license. Copyright (c) 2013 Bailey Ling.
" vim: ts=2 sts=2 sw=2 fdm=indent
function! airline#extensions#branch#apply()
2013-08-05 23:33:25 -04:00
if exists('w:airline_left_only')
return
endif
2013-08-05 23:07:01 -04:00
let w:airline_section_b =
\ exists('*fugitive#head') && strlen(fugitive#head()) > 0
\ ? g:airline_branch_prefix.fugitive#head()
\ : exists('*lawrencium#statusline') && strlen(lawrencium#statusline()) > 0
\ ? g:airline_branch_prefix.lawrencium#statusline()
\ : ''
endfunction
function! airline#extensions#branch#init(ext)
call a:ext.add_statusline_funcref(function('airline#extensions#branch#apply'))
endfunction