.vimrc
"NeoBundleUpdate!を1日毎にバックグラウンド実行"
NeoBundle 'git://gist.github.com/9133200.git', { 'script_type' : 'plugin' }
:NeoBundleUpdate!
対象ソースコード
https://gist.github.com/soramugi/9133200
let timefile = expand('~/.neobundle_updatetime')if filereadable(timefile)let time =join(readfile(timefile),"")if time < system('date +%s')silent! execute '!sh -c "~/.vim/bundle/neobundle.vim/bin/neoinstall" 2>/dev/null &'endifelselet time = system('date -d "1 days" +%s')call writefile([time], timefile)silent! execute '!sh -c "~/.vim/bundle/neobundle.vim/bin/neoinstall" 2>/dev/null &'endif
インスパイア元
Vim - NeoBundleCheckが便利 - Qiita
Vim - NeoBundle周りを自動化する - Qiita