以下のような警告が出るようになっていた。
[neobundle] neobundle#rc() is deprecated function.
[neobundle] It will be removed in the next version.
[neobundle] Please use neobundle#begin()/neobundle#end() instead.
Press ENTER or type command to continue
.vimrc
を変更
call neobundle#rc(expand('~/.vim/bundle/'))
↓
call neobundle#begin(expand('~/.vim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'
call neobundle#end()
thanks
- http://qiita.com/musclemikiya/items/58edc801264aca151446
ここをそのままコピペしただけ。