mirror of
https://github.com/vim-airline/vim-airline.git
synced 2026-01-08 20:43:22 +08:00
fix branch detection
This commit is contained in:
@@ -143,7 +143,6 @@ function! airline#update_statusline()
|
||||
endfor
|
||||
endfunction
|
||||
|
||||
let g:airline_current_mode_text = ''
|
||||
function! airline#update_highlight()
|
||||
if get(w:, 'airline_active', 1)
|
||||
let l:m = mode()
|
||||
|
||||
@@ -1,14 +1,15 @@
|
||||
" 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
|
||||
function! airline#extensions#branch#apply()
|
||||
let g:airline_current_branch = 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user