Fix check for vim9 script

closes #2636
This commit is contained in:
Christian Brabandt 2023-04-17 09:53:26 +02:00
parent a532fed72a
commit 4eea2b7e3c
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
1 changed files with 1 additions and 0 deletions

View File

@ -233,6 +233,7 @@ endfunction
function! airline#util#has_vim9_script()
" Returns true, if Vim is new enough to understand vim9 script
return (exists(":def") &&
\ exists("v:versionlong") &&
\ v:versionlong >= 8022844 &&
\ get(g:, "airline_experimental", 0))
endfunction