neovim: Do not react on BufWinEnter for floating windows

closes #1930
This commit is contained in:
Christian Brabandt 2019-06-03 10:35:58 +02:00
parent 7d5302b51f
commit 48d9d5e901
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
1 changed files with 4 additions and 0 deletions

View File

@ -51,6 +51,10 @@ function! s:on_window_changed(event)
if pumvisible() && (!&previewwindow || g:airline_exclude_preview)
return
endif
" work around a neovim bug: do not trigger on floating windows
if exists("*nvim_win_get_config") && !empty(nvim_win_get_config(0).relative)
return
endif
" Handle each window only once, since we might come here several times for
" different autocommands.
let l:key = [bufnr('%'), s:active_winnr, winnr('$'), tabpagenr(), &ft]