Quantcast
Viewing all articles
Browse latest Browse all 5712

neobundle#rc()がdeprecated functionになる場合

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

Viewing all articles
Browse latest Browse all 5712

Trending Articles