2013-08-24 16:49:54 -04:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2013-09-10 11:37:25 -04:00
|
|
|
if !get(g:, 'virtualenv_loaded', 0)
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-08-24 16:49:54 -04:00
|
|
|
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 03:40:29 -04:00
|
|
|
if &filetype =~ "python"
|
2013-08-25 11:51:32 -04:00
|
|
|
call airline#extensions#append_to_section('x', ' '.g:airline_right_alt_sep.' %{virtualenv#statusline()}')
|
2013-08-24 16:49:54 -04:00
|
|
|
endif
|
|
|
|
endfunction
|
2013-08-25 11:51:32 -04:00
|
|
|
|