1
0
mirror of https://github.com/gryf/snipmate.vim.git synced 2025-12-19 12:28:11 +01:00

fixed a typo in bash snippet

This commit is contained in:
Michael Sanders
2009-05-14 08:12:37 -04:00
parent a771c129d2
commit 6228190c5a

View File

@@ -18,7 +18,7 @@ snippet wh
${2:#statements}
done
snippet until
[[ ${1:condition} ]]; do
until [[ ${1:condition} ]]; do
${2:#statements}
done
snippet case