removed non ascii char from one snippet name. Patch by Thanatermesis

This commit is contained in:
Holger Rapp 2011-08-18 15:06:35 +02:00
parent 84e70f5129
commit bcfb52b00a
2 changed files with 3 additions and 2 deletions

View File

@ -56,13 +56,13 @@ if ${2:[[ ${1:condition} ]]}; then
fi
endsnippet
snippet until "until (done)"
snippet until "until ... (done)"
until ${2:[[ ${1:condition} ]]}; do
${0:#statements}
done
endsnippet
snippet while "while (done)"
snippet while "while ... (done)"
while ${2:[[ ${1:condition} ]]}; do
${0:#statements}
done

View File

@ -762,6 +762,7 @@ Contributers are listed in chronological order:
guns - Sung Pae
shlomif - Shlomi Fish
pberndt - Phillip Berndt
thanatermesis-elive - Thanatermesis
7.2 Snippets *UltiSnips-contrisnippets*
------------