Indent the following lines of code with the following key shortcuts
CTRL + A
CTRL + I
mtcars |>
identity()
{
t <- 1
}
The results is not pretty :
mtcars |>
identity()
{
t <- 1
} # this curly bracket is not aligned
It does work when the function is in the same ligne as the pipe operator