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
e.g. create an .Rmd that contains this and knitr it from the IDE:
```{r}
cli::cli_progress_bar(total = 20)
for (i in 1:20) {
cli::cli_progress_update()
Sys.sleep(0.2)
}
```
The progress bar should appear in the Render pane (i.e. stderr()) rather than appearing in the output. (And I'd expect it to only be updated every 3 seconds).
The text was updated successfully, but these errors were encountered:
Somewhat related to this is that if the background thread if off, like in webR, then currently there are no (timed) progress updates. If we fix the update interval here, then we might as well fix that.
e.g. create an
.Rmd
that contains this and knitr it from the IDE:The progress bar should appear in the Render pane (i.e.
stderr()
) rather than appearing in the output. (And I'd expect it to only be updated every 3 seconds).The text was updated successfully, but these errors were encountered: