The cli_status_*()
functions are superseded by
the cli_progress_message()
and cli_progress_step()
functions,
because they have a better default behavior.
Update the status bar
Usage
cli_status_update(
id = NULL,
msg = NULL,
msg_done = NULL,
msg_failed = NULL,
.envir = parent.frame()
)
Arguments
- id
Id of the status bar to update. Defaults to the current status bar container.
- msg
Text to update the status bar with.
NULL
if you don't want to change it.- msg_done
Updated "done" message.
NULL
if you don't want to change it.- msg_failed
Updated "failed" message.
NULL
if you don't want to change it.- .envir
Environment to evaluate the glue expressions in.
See also
The cli_progress_message()
and cli_progress_step()
functions, for a superior API.
Other status bar:
cli_process_start()
,
cli_status_clear()
,
cli_status()