Reformat code does not affect pipe chains

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?

Sure thing, I've filed it.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.