Merge pull request #1358 from chrisbra/1329

Add tab indicator for tabline when buffers are shown
This commit is contained in:
Christian Brabandt 2016-12-19 11:54:38 +01:00 committed by GitHub
commit e83ed24088
1 changed files with 3 additions and 0 deletions

View File

@ -97,6 +97,9 @@ function! airline#extensions#tabline#buffers#get()
if s:show_tab_type
call b.add_section_spaced('airline_tabtype', s:buffers_label)
endif
if tabpagenr('$') > 1
call b.add_section_spaced('airline_tabmod', printf('%s %d/%d', "tab", tabpagenr(), tabpagenr('$')))
endif
let s:current_bufnr = cur
let s:current_tabline = b.build()