LoginSignup
146
140

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()
146
140
3

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
146
140