Skip to content

Commit 748fa2a

Browse files
Aliaksandr TrushAliaksandr Trush
Aliaksandr Trush
authored and
Aliaksandr Trush
committed
Set $0 for last steps
1 parent df9a29b commit 748fa2a

7 files changed

+8
-8
lines changed

class.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Class ${1:${TM_FILENAME/(.*?)(\..+)/$1/}}
1010
' Called automatically when all references to class instance are removed
1111
End Sub
1212
13-
$2
13+
$0
1414
1515
End Class
1616
]]></content>

do.sublime-snippet

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<snippet>
22
<content><![CDATA[
33
Do
4-
$1
5-
Loop ${2:While/Until} ${3:statement}
4+
$0
5+
Loop ${1:While/Until} ${2:statement}
66
]]></content>
77
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
88
<tabTrigger>do</tabTrigger>

for.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
For ${1:i}=$2 To $3
4-
$5
4+
$0
55
Next
66
]]></content>
77
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->

foreach.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
For Each $1 In $2
4-
$3
4+
$0
55
Next
66
]]></content>
77
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->

function.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
Function $1 ${2:($3)}
4-
$4
4+
$0
55
End Function
66
]]></content>
77
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->

if.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<description>If Condition</description>
66
<content><![CDATA[
77
If ${1:True} Then
8-
${2}
8+
$0
99
End If
1010
]]></content>
1111
</snippet>

sub.sublime-snippet

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
Sub $1 ${2:($3)}
4-
$4
4+
$0
55
End Sub
66
]]></content>
77
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->

0 commit comments

Comments
 (0)