1. R_box和Sendcode插件 :school_satchel:
1.1. 功能
- 在sublime text 3编辑器里面,实现sublime text 3与Rstudio的信号连接
1.2. 快捷键
cmd + enter
1.3. 操作步骤
- 在sublime text 3中新建文件,并将文件类型修改为.R格式
- 在. R文件中正常输入 R代码
- 打开 RStudio,并通过 cmd + enter快捷键,将.R文件中的代码向Rstudio发送
1.4. 参考网站
https://www.statworx.com/ch/blog/compiling-r-code-in-sublime-text/
2. R_coments 插件 :school_satchel:
2.1. 功能
- 在sublime text 3编辑器里面,实现R语言的快捷注释
2.2. 快捷键
- Section Comment:
#### + TAB
- Sub-Section Comment:
###. + TAB
- Todo List Comment:
##, + TAB
- Long Comment:
### + TAB
2.3. 操作步骤
- 在sublime text的.R文档中,输入
#### + TAB
# ==========================================================================
# This is a section comment block
# ==========================================================================
- 在sublime text的.R文档中,输入
###. + TAB
# ==========================================================================
# This is a section comment block
# ==========================================================================
- 在sublime text的.R文档中,输入
##, + TAB
#
# TODO
#
# => This is a TODO comment block
- 在sublime text的.R文档中,输入
### + TAB
#
# This is a longer comment block
#