Merge pull request #1133 from blueyed/on_window_changed-only-once

Update each window only once in s:on_window_changed.
This commit is contained in:
Christian Brabandt 2016-04-20 21:31:52 +02:00
commit 1e77e6cbcc
1 changed files with 7 additions and 0 deletions

View File

@ -37,6 +37,13 @@ function! s:on_window_changed()
if pumvisible() && (!&previewwindow || g:airline_exclude_preview)
return
endif
" Handle each window only once, since we might come here several times for
" different autocommands.
let l:key = [bufnr('%'), winnr(), winnr('$')]
if get(t:, 'airline_last_window_changed', []) == l:key
return
endif
let t:airline_last_window_changed = l:key
call s:init()
call airline#update_statusline()
endfunction