We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get progress bar output included when knitting Rmd:
This occurs if I have .progress = rlang::is_interactive() set within the calling map function. I thought knitting Rmd would count as non-interactive.
.progress = rlang::is_interactive()
map
I think this is the same issue as Hadley is referring to in #583 but I'm not sure.
The text was updated successfully, but these errors were encountered:
Which means that this can only be addressed in rlang::is_interactive(), no? cli only receives .progress = TRUE, so that's what it does.
rlang::is_interactive()
.progress = TRUE
Sorry, something went wrong.
Fair point Gabor. message = FALSE suppresses the progress bar output within knitr, which solves my problem. Sorry - not a cli issue.
message = FALSE
cli
No branches or pull requests
I get progress bar output included when knitting Rmd:
This occurs if I have
.progress = rlang::is_interactive()
set within the callingmap
function. I thought knitting Rmd would count as non-interactive.I think this is the same issue as Hadley is referring to in #583 but I'm not sure.
The text was updated successfully, but these errors were encountered: