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()
- 上記はエラー箇所のみなので、vimrcに記述する内容全体を見たい場合はGitHubのREADMEを参照
https://github.com/Shougo/neobundle.vim