yihui / formatR

Format R Code Automatically
https://yihui.org/formatr/
255 stars 52 forks source link

Spaces around + but not around / and ^? #45

Closed schuemie closed 9 years ago

schuemie commented 9 years ago

This doesn't seem to follow the style guide:

tidy_source(text="x <- a + 2")
# x <- a + 2 
tidy_source(text="x <- a / 2")
# x <- a/2 
tidy_source(text="x <- a ^ 2")
# x <- a^2 
yihui commented 9 years ago

I asked the same question a couple of years ago: http://comments.gmane.org/gmane.comp.lang.r.devel/27423 I'm afraid there is not much that I can do, since this has been baked deep in base R. Sorry.