mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-24 15:49:29 +08:00
7ace10651f
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.
30 lines
843 B
VimL
30 lines
843 B
VimL
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
let s:spc = g:airline_symbols.space
|
|
|
|
function! airline#extensions#virtualenv#init(ext)
|
|
call a:ext.add_statusline_func('airline#extensions#virtualenv#apply')
|
|
endfunction
|
|
|
|
function! airline#extensions#virtualenv#apply(...)
|
|
if &filetype =~# "python"
|
|
if get(g:, 'virtualenv_loaded', 0)
|
|
let statusline = virtualenv#statusline()
|
|
else
|
|
let statusline = fnamemodify($VIRTUAL_ENV, ':t')
|
|
endif
|
|
if !empty(statusline)
|
|
call airline#extensions#append_to_section('x',
|
|
\ s:spc.g:airline_right_alt_sep.s:spc.statusline)
|
|
endif
|
|
endif
|
|
endfunction
|
|
|
|
function! airline#extensions#virtualenv#update()
|
|
if &filetype =~# "python"
|
|
call airline#extensions#virtualenv#apply()
|
|
call airline#update_statusline()
|
|
endif
|
|
endfunction
|