Currently,
A snippet like this:
if (some_condition)
x <- 1
Will get collapsed to one line:
if (some_condition) x <- 1
What do you think about making the line break persistent after if, like line breaks after a function call opener are?
Happy to submit a PR.
Currently,
A snippet like this:
Will get collapsed to one line:
What do you think about making the line break persistent after
if, like line breaks after a function call opener are?Happy to submit a PR.