You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this is intended behavior, so I've opened an issue. If it is intended behavior, perhaps it's worth documenting?
When nesting cli::cli() calls, it is possible for the messages to be displayed out of order.
cli::cli({
cli::cli_h1("Header")
cli::cli(cli::cli_text("Some text"))
cli::cli_text("Some more text")
})
#> Some text#> #> ── Header ──────────────────────────────────────────────────────────────────────#> Some more text
I'm not sure if this is intended behavior, so I've opened an issue. If it is intended behavior, perhaps it's worth documenting?
When nesting
cli::cli()
calls, it is possible for the messages to be displayed out of order.Created on 2022-07-14 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered: