cf. https://style.tidyverse.org/syntax.html#vertical-space ## Actual ``` r library(styler) "f <- function() NULL g <- function() f()" -> code style_text(text = code) #> f <- function() NULL #> #> #> g <- function() f() ``` <sup>Created on 2024-11-28 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup> ## Expected ``` r library(styler) "f <- function() NULL g <- function() f()" -> code style_text(text = code) #> f <- function() NULL #> #> g <- function() f() ```