mo-fu note

研究からキックボクシングまで何でも書いていきます!

Error detected while processing が出たので修正した。

mac(Lion) で vim7.3の設定

vim起動時に以下のエラーが出て困った。

/Users/yuta% vim ~/.vimrc
Error detected while processing /Users/yuta/.vimrc:
line    6:
E117: Unknown function: vundle#rc
line    8:
E492: Not an editor command:   Bundle 'gmarik/vundle'
line    9:
E492: Not an editor command:   Bundle "Shougo/unite.vim"
line   10:
E492: Not an editor command:   Bundle "rails.vim"
line   11:
E492: Not an editor command:   Bundle "php.vim"
line   12:
E492: Not an editor command:   Bundle 'JavaScript-syntax'
line   13:
E492: Not an editor command:   Bundle 'ack.vim'
line   14:
E492: Not an editor command:   Bundle 'Shougo/vimfiler'
line   15:
E492: Not an editor command:   Bundle 'glidenote/memolist.vim'
line   16:
E492: Not an editor command:   Bundle 'Lokaltog/vim-powerline'
line   17:
E492: Not an editor command:   Bundle 'thinca/vim-quickrun'
Press ENTER or type command to continue

.vimrcしかシンボリックリンクを貼っていなかったので、 .vimにもシンボリックリンクを作成。

$ ln -s projects/dotfiles/.vimrc .vimrc
$ ln -s projects/dotfiles/.vim .vim

設定ファイルが読み込めるようになって解決した。 BundleInstallもできた。