Is there any usable emacs mode for Rscript?

(Rscript is the script front-end for the R language.)

If I type this:

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

and do indent in the ESS R-mode it indents the first line like crazy, since it sees it as a comment:

                          #!/usr/bin/Rscript
print(commandArgs(TRUE))
link|improve this question

77% accept rate
feedback

4 Answers

up vote 1 down vote accepted

There isn't, but you can force your Rscript into R editing mode by making the second line of the file look like this:

# -*- mode: R -*-

(More information here.)

link|improve this answer
2  
Also, if you end them .R (my choice for normal R files) or .r (my choice for littler or Rscript 'scripts') the mode tends get assigned automatically to. – Dirk Eddelbuettel Aug 12 '09 at 16:23
feedback

As of version 5.9, ESS will recognize scripts using the Rscript or litter interpreter; see http://ess.r-project.org/Manual/ess.html#New-features.

For reference, to assign a mode to an interpreter, use the interpreter-mode-alist variable. For example,

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

Any file with a first line like "#!/usr/bin/Rscript" will be recognized as r-mode.

link|improve this answer
feedback

If you just want to comment out a line, use "##" instead of "#". Double # will put the line at the right position.

link|improve this answer
True, and a useful thing to know. However, in this case, the first line is required to start with #! to tell the shell what kind of script it is. – Aaron Sep 20 '11 at 16:59
feedback

Try shell-script-mode - with some notes on customized indentation

It indented your code just fine, for me.

link|improve this answer
Any reason for the drive-by down-vote? As I said, what I linked to corrected the bad indentation the OP complained about; if this is not helpful, please ignore. If wrong or harmful, downvote -- but do everybody the courtesy of explaining WHY it is wrong. – Michael Paulukonis Sep 7 '10 at 14:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.