5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS6.6で unite.vim does not work this version of Vim "702". って怒られたから最新版のVimを入れた

Posted at

CentOS6.6のデフォルトで入っているVimにもろもろプラグインを入れてVimを起動したら、unite.vimからunite.vim does not work this version of Vim "702".って怒られた。

どうやらCentOS6.6にデフォルトで入っているVimは7.2で、unite.vimはここらへん見た感じ7.2.051 以上じゃないとエラーになる模様。

ソースコード持ってきて最新ビルドするかーとmercurialをインストールしようと思ったけど、GitHubにVimのリポジトリが出来てたからgitでやることにした。

インストールはこんな感じ。
オプションとかは各自好きな感じで。

$ sudo yum -y install git
$ sudo yum -y install ncurses-devel
$ git clone https://github.com/vim/vim.git
$ cd vim
$ git tag -n
$ git checkout -b 7-4-729 refs/tags/v7-4-729
$ ./configure --enable-multibyte --with-features=huge --disable-selinux --prefix=/usr/local
$ sudo make && sudo make install
5
5
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
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?