mirror of
https://github.com/vim-airline/vim-airline-themes.git
synced 2026-05-18 06:19:36 +08:00
Make the virtualenv extension work better
This fixes #511 It allows the virtualenv plugin to call back and tell the airline plugin to update the statusline. Therefore, the new function airline#extensions#virtualenv#update() is provided. However, to properly fix this issue, the virtualenv plugin needs to call this function. Second, depending on $VIRTUAL_ENV is not safe, since the virtualenv plugin might define it itsself when calling :VirtualEnvActivate Therefore skip this test and just test for existance of he :VirtualEnvList command.
This commit is contained in:
@@ -189,7 +189,7 @@ function! airline#extensions#load()
|
||||
call airline#extensions#bufferline#init(s:ext)
|
||||
endif
|
||||
|
||||
if isdirectory($VIRTUAL_ENV) && get(g:, 'airline#extensions#virtualenv#enabled', 1)
|
||||
if (get(g:, 'airline#extensions#virtualenv#enabled', 1) && exists(':VirtualEnvList'))
|
||||
call airline#extensions#virtualenv#init(s:ext)
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user