Closed
Description
Comments will currently not be moved to the end of a line if we change line breaks.
a <- function(x) #
{
x + 1
}
becomes
a <- function(x) # {
x + 1
}
Which is really not what we want 😩. I think we talked about this case @krlmlr, but I just forgot about it.