vim-airline/autoload/airline/deprecation.vim

10 lines
323 B
VimL
Raw Normal View History

2016-01-14 21:38:38 -05:00
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
2013-08-27 20:28:52 -04:00
" vim: et ts=2 sts=2 sw=2
function! airline#deprecation#check()
if !exists('g:loaded_airline_themes')
echom 'airline themes have been migrated to github.com/vim-airline/vim-airline-themes and will be removed from the core in the near future.'
endif
2013-08-27 20:28:52 -04:00
endfunction