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 don't know the assumptions of this extension when parsing the percentages. If it only looks for x% no matter where it appears, it's probably going to be okay. If it assumes that x% appears at the end of a line, it may be broken with a future version of knitr.
You can install the dev version of knitr to verify:
remotes::install_github('yihui/knitr')
Additional context
In a future version of knitr, users may also be able to provide their custom progress bars (yihui/knitr#2196). If they do, the progress tracking may not work, since we can't predict the form of the progress bars, but I guess that might be fine---if users customize the progress bar, that means they prefer their own style of progress tracking.
Thanks!
The text was updated successfully, but these errors were encountered:
Great! Thank you for the confirmation! Then I'll close this issue.
BTW, the PR yihui/knitr#2196 will make it possible to use a custom progress bar. Perhaps this vscode extension can also use this feature to create a native vscode progress bar directly.
Is your feature request related to a problem? Please describe.
We are currently working on condensing the knitr progress bar: yihui/knitr#1880. I'm filing this issue to check if the changes would affect the progress tracking in this extension: https://github.com/REditorSupport/vscode-R/wiki/R-Markdown#progress-tracking
Describe the solution you'd like
The form of the progress bar will be changed from
to
I don't know the assumptions of this extension when parsing the percentages. If it only looks for
x%
no matter where it appears, it's probably going to be okay. If it assumes thatx%
appears at the end of a line, it may be broken with a future version of knitr.You can install the dev version of knitr to verify:
Additional context
In a future version of knitr, users may also be able to provide their custom progress bars (yihui/knitr#2196). If they do, the progress tracking may not work, since we can't predict the form of the progress bars, but I guess that might be fine---if users customize the progress bar, that means they prefer their own style of progress tracking.
Thanks!
The text was updated successfully, but these errors were encountered: