mirror of
https://github.com/posva/vim-vue.git
synced 2025-12-08 02:14:43 +08:00
Add more test cases Also fixed some style issues TODO: split tests up in multiple files, e.g. test/test_html_syntax.vader
27 lines
446 B
Bash
Executable File
27 lines
446 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
repos=(
|
|
'junegunn/vader.vim'
|
|
'cakebaker/scss-syntax.vim'
|
|
'digitaltoad/vim-pug'
|
|
'groenewege/vim-less'
|
|
'kchmck/vim-coffee-script'
|
|
'leafgarland/typescript-vim'
|
|
'slm-lang/vim-slm'
|
|
'wavded/vim-stylus'
|
|
)
|
|
|
|
cd "$(dirname "$0")/.."
|
|
mkdir -p pack/testing/start
|
|
cd pack/testing/start
|
|
|
|
# Add our plugin to the pack.
|
|
ln -s ../../.. vim-vue
|
|
|
|
for repo in ${repos[@]}
|
|
do
|
|
git clone https://github.com/$repo.git
|
|
done
|