Merge pull request #689 from chrisbra/disable

selectively disable airline for selected windows
This commit is contained in:
Bailey Ling 2015-01-31 12:36:54 -05:00
commit b55b526c65
2 changed files with 9 additions and 0 deletions

View File

@ -89,6 +89,10 @@ endfunction
function! airline#update_statusline()
for nr in filter(range(1, winnr('$')), 'v:val != winnr()')
if !empty(getwinvar(nr, 'airline_disabled')) &&
\ getwinvar(nr, 'airline_disabled')
continue
endif
call setwinvar(nr, 'airline_active', 0)
let context = { 'winnr': nr, 'active': 0, 'bufnr': winbufnr(nr) }
call s:invoke_funcrefs(context, s:inactive_funcrefs)

View File

@ -126,6 +126,11 @@ values):
heavily) >
let g:airline_exclude_preview = 0
<
* disable the Airline customization for selective windows (this is a
window-local variable so you can disable it for only some windows) >
let w:airline_disabled = 1
<
==============================================================================
COMMANDS *airline-commands*