画竜点睛を衝く@mapyo

日々やった事をつらつらと書くブログです

vimを起動する時に警告が出るようになったのを直した

以下のような警告が出るようになっていた。

[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
ここをそのままコピペしただけ。