如何设置RStudio使用 Ctrl + R (除 Ctrl + Enter )到执行命令?
https://community.rstudio.com/t/bring-ctrl-r-back/1846建议编辑" rstudio_bindings.json"文件,但我找不到该文件。
https://support.rstudio.com/hc/en-us/articles/206382178-Customizing-Keyboard-Shortcuts提供了从菜单选项中添加使用的说明。我尝试按照第一个链接中的建议添加"Ctrl+Enter|Ctrl+R"
,但不接受此操作。在页面底部,它描述了如何在~/.R/rstudio/keybindings/rstudio_commands.json
或~/.R/rstudio/keybindings/editor_commands.json
保存绑定。我找不到这些文件。
我该怎么做?
R版本3.4.2
RStudio版本1.1.383
Windows 7
答案 0 :(得分:2)
遵循https://community.rstudio.com/t/bring-ctrl-r-back/1846的建议, 您必须使用
编辑文件~/.R/rstudio/keybindings/rstudio_bindings.json
{
"executeCode" : "Ctrl+Enter|Ctrl+R"
}
这些目录和文件已经存在于Ubuntu上,但是,我的Windows分区上既没有文件也没有任何目录。因此需要创建嵌套目录.R/rstudio/keybindings
,然后创建上面显示的json
文件,并将其另存为rstudio_bindings.json
。
(除此之外:Windows并不想尝试命名.R
的新文件夹(前导点给出了问题),但你可以通过命名.R.
作为尾随来解决问题点已移除from here)