Description Usage Arguments Examples
These functions let you create error, warning or diagnostic messages with cli formatting, including inline styling, pluralization and glue substitutions.
1 2 3 4 5 | cli_abort(message, ..., .envir = parent.frame())
cli_warn(message, ..., .envir = parent.frame())
cli_inform(message, ..., .envir = parent.frame())
|
message |
It is formatted via a call to |
... |
Passed to |
.envir |
Environment to evaluate the glue expressions in. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
n <- "boo"
cli_abort(c(
"{.var n} must be a numeric vector",
"x" = "You've supplied a {.cls {class(n)}} vector."
))
len <- 26
idx <- 100
cli_abort(c(
"Must index an existing element:",
"i" = "There {?is/are} {len} element{?s}.",
"x" = "You've tried to subset element {idx}."
))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.