Merge pull request #239 from kenshin54/master

Add inline if snippet to c
This commit is contained in:
Honza Pokorny 2013-07-08 05:39:13 -07:00
commit 1c74a955b0

View File

@ -65,6 +65,9 @@ snippet elif
else if (${1:/* condition */}) {
${2}
}${3}
# ifi
snippet ifi
if (${1:/* condition */}) ${2};${3}
# ternary
snippet t
${1:/* condition */} ? ${2:a} : ${3:b}