2013-08-24 20:49:54 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
function! airline#extensions#virtualenv#init(ext)
|
|
|
|
call a:ext.add_statusline_func('airline#extensions#virtualenv#apply')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#virtualenv#apply(...)
|
2013-08-27 07:40:29 +00:00
|
|
|
if &filetype =~ "python"
|
2013-08-25 15:51:32 +00:00
|
|
|
call airline#extensions#append_to_section('x', ' '.g:airline_right_alt_sep.' %{virtualenv#statusline()}')
|
2013-08-24 20:49:54 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
2013-08-25 15:51:32 +00:00
|
|
|
|