代码拉取完成,页面将自动刷新
#!/usr/bin/env bash
check=0
function test_space_indented {
local spaced
spaced=$(grep -REn '^ ' --include '*.snippets' snippets)
if [[ $? -ne 1 ]]; then
echo "These snippet lines are indented with spaces:"
echo "$spaced"
echo
(( check++ ))
fi
}
function test_snipmate_format {
local ultisnips_in_snipmate
ultisnips_in_snipmate=$(grep -REn 'endsnippet' --include '*.snippets' snippets)
if [[ $? -ne 1 ]]; then
echo "These snippet definitions are probably in UltiSnips format but stored in the snipmate directory"
echo "$ultisnips_in_snipmate"
echo
(( check++ ))
fi
}
test_space_indented
test_snipmate_format
if [ $check -eq 0 ]; then
echo "Tests passed!"
exit 0
else
echo "$check test(s) failed out of 2!"
exit 1
fi
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。