FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Vim-R-plugin/r-plugin/r.snippets at master · vim-scripts/Vim-R-plugin · GitHub
vim-scripts
/
Vim-R-plugin
Public
Notifications
You must be signed in to change notification settings
Fork
57
Star
121
Code
Pull requests
3
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Vim-R-plugin
/
r-plugin
/
r.snippets
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (33 loc) · 393 Bytes
Breadcrumbs
Vim-R-plugin
/
r-plugin
/
r.snippets
Copy path
File metadata and controls
33 lines (33 loc) · 393 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
library()
snippet
li
library(
${1
:
}
)
#
If Condition
snippet
if
if(
${1
:
condition
}
){
${2
:
}
}
snippet
el
else {
${1
:
}
}
snippet
wh
while(
${1
:
condition
}
){
${2
:
}
}
#
For Loop
snippet
for
for(
${1
:
i
}
in
${2
:
range
}
){
${3
:
}
}
#
Function
snippet
fun
${1
:
funname
}
<- function(
${2
:
}
)
{
${3
:
}
}
#
repeat
snippet
re
repeat{
${2
:
}
if(
${1
:
condition
}
) break
}
Back
|
FazBrowse Home
|
New Git URL