mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-24 09:15:14 +08:00
15 lines
509 B
VimL
15 lines
509 B
VimL
" MIT license. Copyright (c) 2013 Bailey Ling.
|
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
|
|
|
function! airline#extensions#branch#init(ext)
|
|
if g:airline_section_b == ''
|
|
let g: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()
|
|
\ : ''
|
|
endif
|
|
endfunction
|
|
|