LoginSignup
141

More than 5 years have passed since last update.

neobundle#rc()がdeprecated functionになる時の対処法

Last updated at Posted at 2014-10-10

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()

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
What you can do with signing up
141