2013-08-06 03:07:01 +00:00
|
|
|
" MIT license. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
|
|
|
|
2013-08-06 04:42:59 +00:00
|
|
|
function! airline#extensions#branch#apply()
|
2013-08-11 13:42:47 +00:00
|
|
|
let w:airline_current_branch = exists('*fugitive#head') && strlen(fugitive#head()) > 0
|
2013-08-06 04:42:59 +00:00
|
|
|
\ ? g:airline_branch_prefix.fugitive#head()
|
|
|
|
\ : exists('*lawrencium#statusline') && strlen(lawrencium#statusline()) > 0
|
|
|
|
\ ? g:airline_branch_prefix.lawrencium#statusline()
|
2013-08-09 20:12:56 +00:00
|
|
|
\ : g:airline_branch_empty_message
|
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-06 04:42:59 +00:00
|
|
|
call a:ext.add_statusline_funcref(function('airline#extensions#branch#apply'))
|
2013-08-06 03:07:01 +00:00
|
|
|
endfunction
|
|
|
|
|