LoginSignup
22
21

More than 5 years have passed since last update.

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

Posted at

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

[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

22
21
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
21