mirror of
https://github.com/vim-airline/vim-airline.git
synced 2025-11-01 20:23:55 +01: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 ```