diff --git a/Snippets/Array comprehension.tmSnippet b/Snippets/Array comprehension.tmSnippet index 826cb12..10c1a24 100644 --- a/Snippets/Array comprehension.tmSnippet +++ b/Snippets/Array comprehension.tmSnippet @@ -4,7 +4,7 @@ content for ${1:name} in ${2:array} - ${0:# body...} + ${0:# body...} name Array Comprehension scope diff --git a/Snippets/Bound Function.tmSnippet b/Snippets/Bound Function.tmSnippet index 1e3fe0e..4275a2c 100644 --- a/Snippets/Bound Function.tmSnippet +++ b/Snippets/Bound Function.tmSnippet @@ -4,7 +4,7 @@ content (${1:args}) => - ${0:# body...} + ${0:# body...} name Function (bound) scope diff --git a/Snippets/Class.tmSnippet b/Snippets/Class.tmSnippet index a666926..a402657 100644 --- a/Snippets/Class.tmSnippet +++ b/Snippets/Class.tmSnippet @@ -5,9 +5,9 @@ content class ${1:ClassName}${2: extends ${3:Ancestor}} - ${4:constructor: (${5:args}) -> - ${6:# body...}} - $7 + ${4:constructor: (${5:args}) -> + ${6:# body...}} + $7 name Class scope diff --git a/Snippets/Else if.tmSnippet b/Snippets/Else if.tmSnippet index 6e2fd36..249fd3d 100644 --- a/Snippets/Else if.tmSnippet +++ b/Snippets/Else if.tmSnippet @@ -4,7 +4,7 @@ content else if ${1:condition} - ${0:# body...} + ${0:# body...} name Else if scope diff --git a/Snippets/Function.tmSnippet b/Snippets/Function.tmSnippet index 6e58a6a..88db643 100644 --- a/Snippets/Function.tmSnippet +++ b/Snippets/Function.tmSnippet @@ -4,7 +4,7 @@ content (${1:args}) -> - ${0:# body...} + ${0:# body...} name diff --git a/Snippets/If __ Else.tmSnippet b/Snippets/If __ Else.tmSnippet index 409d0aa..880a1f2 100644 --- a/Snippets/If __ Else.tmSnippet +++ b/Snippets/If __ Else.tmSnippet @@ -4,9 +4,9 @@ content if ${1:condition} - ${2:# body...} + ${2:# body...} else - ${3:# body...} + ${3:# body...} name If .. Else scope diff --git a/Snippets/If.tmSnippet b/Snippets/If.tmSnippet index 734b5c2..ac0f340 100644 --- a/Snippets/If.tmSnippet +++ b/Snippets/If.tmSnippet @@ -4,7 +4,7 @@ content if ${1:condition} - ${0:# body...} + ${0:# body...} name If scope diff --git a/Snippets/Object comprehension.tmSnippet b/Snippets/Object comprehension.tmSnippet index faac992..1d2b5f9 100644 --- a/Snippets/Object comprehension.tmSnippet +++ b/Snippets/Object comprehension.tmSnippet @@ -4,7 +4,7 @@ content for ${1:key}, ${2:value} of ${3:Object} - ${0:# body...} + ${0:# body...} name Object comprehension scope diff --git a/Snippets/Range comprehension (exclusive).tmSnippet b/Snippets/Range comprehension (exclusive).tmSnippet index 9d26ddd..9aed340 100644 --- a/Snippets/Range comprehension (exclusive).tmSnippet +++ b/Snippets/Range comprehension (exclusive).tmSnippet @@ -4,7 +4,7 @@ content for ${1:name} in [${2:start}...${3:finish}]${4: by ${5:step}} - ${0:# body...} + ${0:# body...} name Range comprehension (exclusive) scope diff --git a/Snippets/Range comprehension (inclusive).tmSnippet b/Snippets/Range comprehension (inclusive).tmSnippet index 991a157..e64c755 100644 --- a/Snippets/Range comprehension (inclusive).tmSnippet +++ b/Snippets/Range comprehension (inclusive).tmSnippet @@ -4,7 +4,7 @@ content for ${1:name} in [${2:start}..${3:finish}]${4: by ${5:step}} - ${0:# body...} + ${0:# body...} name Range comprehension (inclusive) scope diff --git a/Snippets/Switch.tmSnippet b/Snippets/Switch.tmSnippet index 6ebe7fb..def5b09 100644 --- a/Snippets/Switch.tmSnippet +++ b/Snippets/Switch.tmSnippet @@ -4,8 +4,8 @@ content switch ${1:object} - when ${2:value} - ${0:# body...} + when ${2:value} + ${0:# body...} name Switch scope diff --git a/Snippets/Try __ Catch.tmSnippet b/Snippets/Try __ Catch.tmSnippet index 1b24153..04004ac 100644 --- a/Snippets/Try __ Catch.tmSnippet +++ b/Snippets/Try __ Catch.tmSnippet @@ -4,9 +4,9 @@ content try - $1 + $1 catch ${2:error} - $3 + $3 name Try .. Catch scope