added missing trigger key

This commit is contained in:
Jim Myhrberg 2011-11-03 20:23:03 +00:00
parent 3aea27042b
commit 0fdc466b97
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#Author : Jonas Bonèr <jonas@jonasboner.com>
#name : for (x <- xs if guard) { ... }
# key: for
# --
for (${1:x} <- ${2:xs} if ${3:guard}) {
$0

View File

@ -1,5 +1,6 @@
#Author : Jonas Bonèr <jonas@jonasboner.com>
#name : if (cond) { .. } else { .. }
# key: if
# --
if (${1:condition}) {
$2