是否有Rscript的Emacs模式?

时间:2009-07-10 03:55:09

标签: emacs r ess

Rscript是否有可用的emacs模式?

RscriptR语言的脚本前端。)

如果我输入:

#!/usr/bin/Rscript
print(commandArgs(TRUE))

并在ESS R模式中执行indent它会像疯了一样缩进第一行,因为它将其视为注释:

                          #!/usr/bin/Rscript
print(commandArgs(TRUE))

4 个答案:

答案 0 :(得分:2)

从版本5.9开始,ESS将使用Rscript或litter解释器识别脚本;见http://ess.r-project.org/Manual/ess.html#New-features

作为参考,要将模式分配给解释器,请使用interpreter-mode-alist变量。例如,

(add-to-list 'interpreter-mode-alist '("Rscript" . r-mode))

任何带有第一行的文件如“#!/ usr / bin / Rscript”都将被识别为r模式。

答案 1 :(得分:1)

没有,但你可以通过使文件的第二行看起来像这样强制你的Rscript进入R编辑模式:

# -*- mode: R -*-

(更多信息here。)

答案 2 :(得分:0)

尝试shell-script-mode - 使用一些notes on customized indentation

对我来说,它缩进了你的代码。

答案 3 :(得分:0)

如果您只想注释掉一行,请使用“##”而不是“#”。双#将把线放在正确的位置。