Is there a shortcut or an add-in to format multiples lines of codes into one single line and vice versa in RStudio ? Such as in the following image :
Toy Code
#### Singles lines ####
a <- 1; b <- 2; d <- 5;
ggplot(mtcars, aes(x = gear, y = disp, group = gear)) + geom_bar(stat = "identity")
mtcars %>% filter(gear == 4) %>% nrow()
#### Multiple lines ####
a <- 1
b <- 2
d <- 5
ggplot(mtcars, aes(x = gear, y = disp, group = gear)) +
geom_bar(stat = "identity")
mtcars %>%
filter(gear == 4) %>%
nrow()
I already knew and installed the remedy
package but it returns an error message when I click on the add-in.