1
0
mirror of https://github.com/amix/vimrc synced 2025-08-02 19:15:00 +08:00

Updated plugins

This commit is contained in:
amix
2015-12-08 10:20:04 -03:00
parent 768c72a3ed
commit 3b37bba6cd
239 changed files with 8132 additions and 3198 deletions

View File

@ -1,15 +1,15 @@
#!/usr/bin/env bash
SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets);
SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets)
if [[ $? -ne 1 ]]; then
echo These snippet lines are indented with spaces:;
echo;
echo "$SPACED";
echo;
echo These snippet lines are indented with spaces:
echo
echo "$SPACED"
echo
echo Tests failed!
exit 1;
exit 1
fi
echo Tests passed!
exit 0;
exit 0