diff --git a/snippets/c.snippets b/snippets/c.snippets index 21c265d..16a86e9 100644 --- a/snippets/c.snippets +++ b/snippets/c.snippets @@ -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}