Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

neobundleの指定には絶対パスを使う

$
0
0

最初の設定

Neobundle - vim入門githubを参考に.vimrcを書いた。
NeoBundleは複数端末にvimrcを同期する時、毎回cloneするのが嫌だったのでサブモジュール化した。

if has('vim_starting')
    set compatible
endif
set rtp+=./neobundle.vim/
endif
"Required
call neobundle#begin(expand('~/dotfiles/'))
NeoBundleFetch 'Shougo/neobundle.vim'

これを作成している間はどんどんインストールがされていってワクワクして寝た。

朝起きたら動かない

さーRubyの勉強するかーっと思って~/sandbox/ruby-getting-start/内のRubyファイルをvimで開くと、

Error detected while processing /Users/Ox9n/.vimrc:
line   16:
E117: Unknown function: neobundle#begin
line   17:
E492: Not...

vimrcやneobundle.vimがあるディレクトリでは開けて、それ以外のディレクトリでは開けない…ってことは…

if has('vim_starting')
    if &compatible
        set compatible
    endif
    set rtp+=~/dotfiles/neobundle.vim/
endif
"Required
call neobundle#begin(expand('~/dotfiles/'))
NeoBundleFetch 'Shougo/neobundle.vim'

絶対パス指定にしたら動いた。失礼しました。


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>