Add R for and while snippets
This commit is contained in:
parent
5edbfec786
commit
74ef5cbd44
@ -23,6 +23,16 @@ snippet ei
|
|||||||
${0}
|
${0}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# loops
|
||||||
|
snippet wh
|
||||||
|
while(${1}) {
|
||||||
|
${2}
|
||||||
|
}
|
||||||
|
snippet for
|
||||||
|
for (${1:item} in ${2:list}) {
|
||||||
|
${3}
|
||||||
|
}
|
||||||
|
|
||||||
# functions
|
# functions
|
||||||
snippet fun
|
snippet fun
|
||||||
${1:name} = function (${2:variables}) {
|
${1:name} = function (${2:variables}) {
|
||||||
|
Loading…
Reference in New Issue
Block a user