show tab nr condition moved to right place

This commit is contained in:
zdm 2013-12-22 05:32:06 +02:00
parent 0714c35547
commit 6c79004aaa
1 changed files with 6 additions and 7 deletions

View File

@ -243,12 +243,12 @@ function! s:get_tabs()
let group = 'airline_tab'
endif
let val = '%('
if s:tab_nr_type == 0
let val .= ' %{len(tabpagebuflist('.i.'))}'
else
if s:show_tab_nr
let val .= (g:airline_symbols.space).i
endif
if s:show_tab_nr
if s:tab_nr_type == 0
let val .= ' %{len(tabpagebuflist('.i.'))}'
else
let val .= (g:airline_symbols.space).i
endif
endif
call b.add_section(group, val.'%'.i.'T %{airline#extensions#tabline#title('.i.')} %)')
endfor
@ -264,4 +264,3 @@ function! s:get_tabs()
let s:current_tabline = b.build()
return s:current_tabline
endfunction