do not skip empty sections for the tabline
commit #3d667c32d3ac04 fixed a bug, that a section was not considered empty for the statusline, also g:airline_skip_empty was set. However unfortunately, this lead to a regression, makeing the tabline ugly, because sections, that contained a single highlighting group would be considered empty and would therefore be skipped. Since this is not what is expected, make s:section_is_empty() return zero, when it notices we are looking at a tabline. fixes #1273
This commit is contained in:
parent
3c33251ee7
commit
f5359f9177
@ -150,9 +150,11 @@ endfunction
|
|||||||
function! s:section_is_empty(self, content)
|
function! s:section_is_empty(self, content)
|
||||||
let start=1
|
let start=1
|
||||||
|
|
||||||
" do not check for inactive windows
|
" do not check for inactive windows or the tabline
|
||||||
if a:self._context.active == 0
|
if a:self._context.active == 0
|
||||||
return 0
|
return 0
|
||||||
|
elseif get(a:self._context, 'tabline', 0)
|
||||||
|
return 0
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" only check, if airline#skip_empty_sections == 1
|
" only check, if airline#skip_empty_sections == 1
|
||||||
|
@ -157,6 +157,7 @@ endfunction
|
|||||||
function! airline#extensions#tabline#new_builder()
|
function! airline#extensions#tabline#new_builder()
|
||||||
let builder_context = {
|
let builder_context = {
|
||||||
\ 'active' : 1,
|
\ 'active' : 1,
|
||||||
|
\ 'tabline' : 1,
|
||||||
\ 'right_sep' : get(g:, 'airline#extensions#tabline#right_sep' , g:airline_right_sep),
|
\ 'right_sep' : get(g:, 'airline#extensions#tabline#right_sep' , g:airline_right_sep),
|
||||||
\ 'right_alt_sep' : get(g:, 'airline#extensions#tabline#right_alt_sep', g:airline_right_alt_sep),
|
\ 'right_alt_sep' : get(g:, 'airline#extensions#tabline#right_alt_sep', g:airline_right_alt_sep),
|
||||||
\ }
|
\ }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user