Simplify logic on if statement
Referencing the same boolean multiple times in a logical statement is probably not what was intended.
This commit is contained in:
parent
d07799421a
commit
1d6ec383e4
|
@ -27,8 +27,7 @@ function! s:init()
|
|||
endfunction
|
||||
|
||||
function! s:on_window_changed()
|
||||
if pumvisible() && (!&previewwindow ||
|
||||
\ (g:airline_exclude_preview && &previewwindow))
|
||||
if pumvisible() && (!&previewwindow || g:airline_exclude_preview)
|
||||
return
|
||||
endif
|
||||
call s:init()
|
||||
|
|
Loading…
Reference in New Issue