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