Add filetype to chache, disable cache for fugitive

#1452 (partly)
This commit is contained in:
Christian Brabandt 2017-03-20 08:36:54 +01:00
parent 7813a54912
commit 703241942a
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
1 changed files with 4 additions and 1 deletions

View File

@ -41,9 +41,12 @@ function! s:on_window_changed()
endif
" Handle each window only once, since we might come here several times for
" different autocommands.
let l:key = [bufnr('%'), winnr(), winnr('$'), tabpagenr()]
let l:key = [bufnr('%'), winnr(), winnr('$'), tabpagenr(), &ft]
if get(g:, 'airline_last_window_changed', []) == l:key
\ && &stl is# '%!airline#statusline('.winnr().')'
\ && ft !~? 'gitcommit'
" fugitive is special, it changes names and filetypes several times,
" make sure the caching does not get into its way
return
endif
let g:airline_last_window_changed = l:key