mirror of
https://github.com/amix/vimrc
synced 2025-06-16 09:35:01 +08:00
Updated plugins and added vim-markdown
This commit is contained in:
16
sources_non_forked/vim-markdown/test/run-tests.sh
Normal file
16
sources_non_forked/vim-markdown/test/run-tests.sh
Normal file
@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Exit on error.
|
||||
set -e
|
||||
|
||||
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
||||
|
||||
for dep in ../build/tabular ../build/vim-toml ../build/vim-json ../build/vader.vim; do
|
||||
if [[ ! -d $dep ]]; then
|
||||
echo "Missing dependency: $dep"
|
||||
echo "You may just want to use 'make test'."
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
vim -Nu vimrc -c 'Vader! *' > /dev/null
|
Reference in New Issue
Block a user