Merge pull request #576 from qstrahl/master
Preserve section c text for inactive windows
This commit is contained in:
commit
f0e00620c0
@ -63,7 +63,11 @@ function! airline#extensions#default#apply(builder, context)
|
|||||||
if airline#util#getwinvar(winnr, 'airline_render_left', active || (!active && !g:airline_inactive_collapse))
|
if airline#util#getwinvar(winnr, 'airline_render_left', active || (!active && !g:airline_inactive_collapse))
|
||||||
call <sid>build_sections(a:builder, a:context, s:layout[0])
|
call <sid>build_sections(a:builder, a:context, s:layout[0])
|
||||||
else
|
else
|
||||||
call a:builder.add_section('airline_c'.(a:context.bufnr), ' %f%m ')
|
let text = <sid>get_section(winnr, 'c')
|
||||||
|
if empty(text)
|
||||||
|
let text = ' %f%m '
|
||||||
|
endif
|
||||||
|
call a:builder.add_section('airline_c'.(a:context.bufnr), text)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
call a:builder.split(s:get_section(winnr, 'gutter', '', ''))
|
call a:builder.split(s:get_section(winnr, 'gutter', '', ''))
|
||||||
|
Loading…
Reference in New Issue
Block a user