views:

27

answers:

1

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?

+3  A: 

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

Dirk Eddelbuettel
Thanks I didn't know that.
csgillespie