File tree 4 files changed +38
-2
lines changed
4 files changed +38
-2
lines changed Original file line number Diff line number Diff line change 2
2
<content ><![CDATA[
3
3
Do
4
4
$0
5
- Loop ${1:While/ Until} ${2 :statement}
5
+ Loop Until ${1 :statement}
6
6
]]> </content >
7
7
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
8
8
<tabTrigger >do</tabTrigger >
9
9
<!-- Optional: Set a scope to limit where the snippet will trigger -->
10
10
<scope >source.vbs</scope >
11
- <description >Do While/Untile loop </description >
11
+ <description >Do Loop Until </description >
12
12
</snippet >
Original file line number Diff line number Diff line change
1
+ <snippet >
2
+ <content ><![CDATA[
3
+ Do
4
+ $0
5
+ Loop While ${1:statement}
6
+ ]]> </content >
7
+ <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
8
+ <tabTrigger >do</tabTrigger >
9
+ <!-- Optional: Set a scope to limit where the snippet will trigger -->
10
+ <scope >source.vbs</scope >
11
+ <description >Do Loop While</description >
12
+ </snippet >
Original file line number Diff line number Diff line change
1
+ <snippet >
2
+ <content ><![CDATA[
3
+ Do Until ${1:statement}
4
+ $0
5
+ Loop
6
+ ]]> </content >
7
+ <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
8
+ <tabTrigger >do</tabTrigger >
9
+ <!-- Optional: Set a scope to limit where the snippet will trigger -->
10
+ <scope >source.vbs</scope >
11
+ <description >Do Until Loop</description >
12
+ </snippet >
Original file line number Diff line number Diff line change
1
+ <snippet >
2
+ <content ><![CDATA[
3
+ Do While ${1:statement}
4
+ $0
5
+ Loop
6
+ ]]> </content >
7
+ <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
8
+ <tabTrigger >do</tabTrigger >
9
+ <!-- Optional: Set a scope to limit where the snippet will trigger -->
10
+ <scope >source.vbs</scope >
11
+ <description >Do While Loop</description >
12
+ </snippet >
You can’t perform that action at this time.
0 commit comments