diff --git a/nvim/init.vim b/nvim/init.vim index 822f9ac..91c5b9e 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -65,7 +65,7 @@ function! BuildYCM(info) " - name: name of the plugin " - status: 'installed', 'updated', or 'unchanged' " - force: set on PlugInstall! or PlugUpdate! - if a:info.status == 'installed' || a:info.force + if a:info.status == 'installed' || a:info.status == 'updated' || a:info.force execute '!' . g:python_interpreter . ' ./install.py --all' endif endfunction