我正在使用Visual Studio Code编写和编辑我的R脚本。因此,我想创建一些键绑定,例如:
nrow(*selected*)
length(*selected*)
因此,我为Visual Studio安装了“ R Extension Pack”(带有R&R LSP Client)。使用“ Ctrl + Enter”,我可以运行选定的代码,如下所示:
{ "key": "ctrl+enter",
"command": "r.runSelection",
"when": "editorTextFocus && editorLangId == 'r'" }
但是如何运行选择以获取nrow()或length()?
答案 0 :(得分:0)
nrow(*selected*)
:Ctrl-1
length(*selected*)
:Ctrl-2
您无法定义这样的自定义函数,但是有一个未解决的问题:https://github.com/Ikuyadeu/vscode-R/issues/201