mirror of
https://github.com/vim-airline/vim-airline.git
synced 2025-12-10 14:01:52 +08:00
fixes #1187 by making sure, we only call functions, that actually exist. Should make vim-airline work with lady loaded YCM, e.g. using vim-plug: ```viml " Code to execute when the plugin is loaded on demand Plug 'Valloric/YouCompleteMe', { 'for': 'cpp' } autocmd! User YouCompleteMe if !has('vim_starting') | call youcompleteme#Enable() | endif ```