When I use C-M-\ (with emacs and ESS) to format my R code, it right justifies my comments. For example, it changes:

#This is a comment
x=5

to

                       #This is a comment
x=5

How do I stop my comments being right-justified?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

One solution is to use ##. By convention, that one doesn't move.

link|improve this answer
Thanks I didn't know that. – csgillespie Sep 1 '10 at 21:01
feedback

Your Answer

 
or
required, but never shown

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