file type check converted to pattern match

so extension will be enabled for file types like python.django etc.
This commit is contained in:
Zekeriya Koc 2013-08-27 10:40:29 +03:00
parent bc03ab5cbf
commit 2be030b7e8
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ function! airline#extensions#virtualenv#init(ext)
endfunction
function! airline#extensions#virtualenv#apply(...)
if &filetype == "python"
if &filetype =~ "python"
call airline#extensions#append_to_section('x', ' '.g:airline_right_alt_sep.' %{virtualenv#statusline()}')
endif
endfunction