Mercurial > ec-dotfiles
comparison update-vim-syntax @ 508:bbcffc594d1e
Vendor what should be vendored and add some more.
author | edogawaconan <me@myconan.net> |
---|---|
date | Mon, 17 Mar 2014 15:47:15 +0900 |
parents | |
children | f5b6dba3308b |
comparison
equal
deleted
inserted
replaced
507:973b7f21b582 | 508:bbcffc594d1e |
---|---|
1 #!/bin/sh | |
2 | |
3 if [ ! command -v wget > /dev/null 2>&1 ]; then | |
4 echo wget is required | |
5 exit 1 | |
6 fi | |
7 | |
8 _get() { | |
9 wget --no-check-certificate -nv "$1" | |
10 } | |
11 | |
12 cd "$(dirname "$0")/vendor/vim-syntax" | |
13 | |
14 rm -f *.vim | |
15 _get https://vim.googlecode.com/hg/runtime/syntax/ruby.vim | |
16 _get https://vim.googlecode.com/hg/runtime/syntax/eruby.vim | |
17 _get https://vim.googlecode.com/hg/runtime/syntax/scss.vim | |
18 _get https://github.com/kchmck/vim-coffee-script/raw/master/syntax/coffee.vim | |
19 _get https://github.com/slim-template/vim-slim/raw/master/syntax/slim.vim | |
20 _get https://github.com/elzr/vim-json/raw/master/syntax/json.vim |