update branch head all the time (#42).
This commit is contained in:
parent
e26165caa6
commit
0a88fd81d3
@ -1,15 +1,23 @@
|
|||||||
" MIT license. Copyright (c) 2013 Bailey Ling.
|
" MIT license. Copyright (c) 2013 Bailey Ling.
|
||||||
" vim: ts=2 sts=2 sw=2 fdm=indent
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
||||||
|
|
||||||
function! airline#extensions#branch#apply()
|
function! airline#extensions#branch#get_head()
|
||||||
let w:airline_current_branch = exists('*fugitive#head') && strlen(fugitive#head()) > 0
|
let head = ''
|
||||||
\ ? g:airline_branch_prefix.fugitive#head()
|
|
||||||
\ : exists('*lawrencium#statusline') && strlen(lawrencium#statusline()) > 0
|
if exists('*fugitive#head')
|
||||||
\ ? g:airline_branch_prefix.lawrencium#statusline()
|
let head = fugitive#head()
|
||||||
\ : g:airline_branch_empty_message
|
endif
|
||||||
|
|
||||||
|
if empty(head)
|
||||||
|
if exists('*lawrencium#statusline')
|
||||||
|
let head = lawrencium#statusline()
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
return empty(head) ? g:airline_branch_empty_message : g:airline_branch_prefix.head
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! airline#extensions#branch#init(ext)
|
function! airline#extensions#branch#init(ext)
|
||||||
call a:ext.add_statusline_funcref(function('airline#extensions#branch#apply'))
|
let g:airline_section_b .= '%{airline#extensions#branch#get_head()}'
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ call s:check_defined('g:airline_theme_map', {
|
|||||||
\ })
|
\ })
|
||||||
|
|
||||||
call s:check_defined('g:airline_section_a', '%{get(w:, "airline_current_mode", "")}')
|
call s:check_defined('g:airline_section_a', '%{get(w:, "airline_current_mode", "")}')
|
||||||
call s:check_defined('g:airline_section_b', '%{get(w:, "airline_current_branch", "")}')
|
call s:check_defined('g:airline_section_b', '')
|
||||||
call s:check_defined('g:airline_section_c', '%f%m')
|
call s:check_defined('g:airline_section_c', '%f%m')
|
||||||
call s:check_defined('g:airline_section_gutter', '%=')
|
call s:check_defined('g:airline_section_gutter', '%=')
|
||||||
call s:check_defined('g:airline_section_x', "%{strlen(&filetype)>0?&filetype:''}")
|
call s:check_defined('g:airline_section_x', "%{strlen(&filetype)>0?&filetype:''}")
|
||||||
|
Loading…
Reference in New Issue
Block a user