Skip to content

Commit ec9a7a5

Browse files
committed
Merge pull request honza#348 from r4d2/master
R: Fixed for loop syntax and added while
2 parents 8efe43e + 74ef5cb commit ec9a7a5

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

UltiSnips/r.snippets

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ while(${1}) {
4848
endsnippet
4949

5050
snippet for "for loop"
51-
for ({${1:item} in ${2:list}) {
51+
for (${1:item} in ${2:list}) {
5252
${3}
5353
}
5454
endsnippet

snippets/r.snippets

+10
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@ snippet ei
2323
${0}
2424
}
2525

26+
# loops
27+
snippet wh
28+
while(${1}) {
29+
${2}
30+
}
31+
snippet for
32+
for (${1:item} in ${2:list}) {
33+
${3}
34+
}
35+
2636
# functions
2737
snippet fun
2838
${1:name} = function (${2:variables}) {

0 commit comments

Comments
 (0)