2015年2月14日土曜日

Vim 7.4.618 1

Vim 7.4.618

職場の環境で、上手く動作しないので自宅の環境で検証してみます。
↓は、職場のVimの起動時に出るエラーです。

[neobundle] neobundle#rc() is deprecated function.
[neobundle] It will be removed in the next version.
[neobundle] Please use neobundle#begin()/neobundle#end() instead.
You need vim compiled with Python 2.6, 2.7 or 3.2 and later support
for Powerline to work. Please consult the documentation for moredetails.
[neobundle] neobundle#rc() is deprecated function.
[neobundle] It will be removed in the next version.
[neobundle] Please use neobundle#begin()/neobundle#end() instead.

Vimは香り屋版で、OSはWindows7 Professional 64bitです。

Git Extensions 2.48.03

NeoBundleを使うためにGitを入れておきます。

環境変数のPathにGitへのコマンドを追加します。

パスが通っているか、確認します。

gvim.exe

'NeoBundleCheck'で起動時の未インストールのプラグインがチェックされます。

プラグインのインストールで失敗します。

環境変数を修正しました。
'C:\Program Files (x86)\Git\bin'を追加しました。

PowerLineが動作しません。
Python 2.6/2.7/3.2以降でコンパイルされたVimが必要と書いてあります。

You need vim compiled with Python 2.6, 2.7 or 3.2 and later support for Powerline to work. Please consult the documentation for more details.

香り屋版以外のVimも試してみます。

vimrc

" Swapを作らない
set noswapfile

" 行番号を表示
set number

" Syntax
syntax on

"---------------------------
" Start Neobundle Settings.
"---------------------------

" neobundle
set nocompatible               " Be iMproved
filetype off                   " Required!

if has('vim_starting')
  set runtimepath+=$vim/bundle/neobundle.vim
endif

call neobundle#begin(expand('~/vim/bundle/'))
NeoBundleFetch 'Shougo/neobundlse.vim'
call neobundle#end()


" originalrepos on github
NeoBundle 'Shougo/neobundle.vim'

"-------------------------
" ↓↓ここからプラグインを追記。
"------------------------

" PowerLine
NeoBundle 'alpaca-tc/alpaca_powertabline'
NeoBundle 'Lokaltog/powerline', { 'rtp' : 'powerline/bindings/vim'}
NeoBundle 'Lokaltog/powerline-fontpatcher'

" vimfiler/ファイラ
NeoBundle 'Shougo/vimfiler'
NeoBundle 'git://github.com/Shougo/unite.vim.git'

" NERDTree/ディレクトリツリー
NeoBundle 'scrooloose/nerdtree'

" autoclose/自動括弧閉じ
NeoBundle 'Townk/vim-autoclose'

" Emmet/HTML入力効率化     
NeoBundle 'mattn/emmet-vim'

" surround.vim/'Sx'で選択範囲を囲う 
NeoBundle 'tpope/vim-surround'

"-------------------------
" ↑↑ここまでプラグインを追記。
"-------------------------

call neobundle#end()
 
" Required:
filetype plugin indent on

" 未インストールのチェック
NeoBundleCheck

0 件のコメント:

コメントを投稿