extract fugitive/lawrencium

This commit is contained in:
Bailey Ling
2013-08-06 03:07:01 +00:00
parent 11fd24b3ef
commit 9c960875fe
3 changed files with 21 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
" MIT license. Copyright (c) 2013 Bailey Ling.
" vim: ts=2 sts=2 sw=2 fdm=indent
function! airline#extensions#branch#apply()
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