Merge pull request #2576 from shadowwa/master

Update util.vim
This commit is contained in:
Christian Brabandt 2022-09-26 15:22:48 +02:00 committed by GitHub
commit 78abec3b83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ function! airline#util#is_popup_window(winnr)
if exists('*win_gettype')
return win_gettype(a:winnr) ==# 'popup' || win_gettype(a:winnr) ==# 'autocmd'
else
return getwinvar(a:winnr, '&buftype', '') ==# 'popup'
return airline#util#getwinvar(a:winnr, '&buftype', '') ==# 'popup'
endif
endfunction