Vim起動時に下記のエラーが出るようになった。
[neobundle] neobundle#rc() is deprecated function.
[neobundle] It is removed in the next version.
どうやらNeoBundleの初期化関数が変更になったようなので、.vimrcを下記のように変更。
call neobundle#rc(expand('~/.vim/bundle/'))
↓
call neobundle#begin(expand('~/.vim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'
call neobundle#end()