6

我想将 RStudio(Windows 7)中的默认编辑器更改为记事本++。

我知道我应该使用

options(editor = "notepad")

然后运行,例如:

mean <- edit(mean)

但是当我输入记事本++时,我收到了这个错误

options(editor = "notepad++")
mean <- edit(mean)
Error in edit(name, file, title, editor) : 
  unable to run editor 'notepad++'

在 Windows 中,我可以通过键入“start notepad++”在控制台中运行 notepad++。

我将非常感谢您的帮助!

这是我的会话信息:

> sessionInfo()
R version 2.15.2 (2012-10-26)
Platform: x86_64-w64-mingw32/x64 (64-bit)

locale:
[1] LC_COLLATE=Polish_Poland.1250  LC_CTYPE=Polish_Poland.1250    LC_MONETARY=Polish_Poland.1250
[4] LC_NUMERIC=C                   LC_TIME=Polish_Poland.1250    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
[1] tools_2.15.2
4

2 回答 2

12

好的,这真的很简单:

options(editor = "C:/Program Files (x86)/Notepad++/notepad++.exe")

对不起这个问题。

于 2013-02-12T10:12:45.370 回答
3
于 2015-02-13T06:15:35.557 回答