jzadra
1
Reformat code (Code > Reformat Code) does not currently act on pipe chains.
mtcars %>% filter(cyl == 4) %>% count(mpg)
should end up like:
mtcars %>%
filter(cyl == 4) %>%
count(mpg)
But nothing actually happens when it is applied to the pipe chain.
You're right! Would you mind filing this as a feature request at https://github.com/rstudio/rstudio/issues?
jzadra
3
Sure thing, I've filed it.
system
Closed
4
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.