bufenter is sufficient to detect buffer list changes.

This commit is contained in:
Bailey Ling 2013-09-22 17:20:38 -04:00
parent b5e8ea275e
commit cdc951be36

View File

@ -28,9 +28,9 @@ function! airline#extensions#tabline#init(ext)
set showtabline=2 set showtabline=2
else else
if s:show_buffers == 1 if s:show_buffers == 1
autocmd CursorMoved * call <sid>cursormove(s:buf_min_count, len(s:get_buffer_list())) autocmd BufEnter * call <sid>on_buf_enter(s:buf_min_count, len(s:get_buffer_list()))
else else
autocmd CursorMoved * call <sid>cursormove(s:tab_min_count, tabpagenr('$')) autocmd BufEnter * call <sid>on_buf_enter(s:tab_min_count, tabpagenr('$'))
endif endif
endif endif
@ -53,7 +53,7 @@ function! airline#extensions#tabline#load_theme(palette)
call airline#highlighter#exec('airline_tabhid', l:tabhid) call airline#highlighter#exec('airline_tabhid', l:tabhid)
endfunction endfunction
function! s:cursormove(min_count, total_count) function! s:on_buf_enter(min_count, total_count)
if a:total_count >= a:min_count if a:total_count >= a:min_count
if &showtabline != 2 if &showtabline != 2
set showtabline=2 set showtabline=2