-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
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
No scrollbar generated for large outputs #5629
Comments
@tobiasharren are you using the new native notebooks interface, i.e. it looks like the following? If so, the There also doesn't seem to be a way to configure this in VS Code settings: Note for engineering triage: we should file this as an upstream issue on VS Code. |
@joyceerhl thank you for your reply! Is it then possible to not apply the native notebooks interface, while this does not work yet? Also the "Open in Notebook Editor" option opens it in the same interface. |
Yes, you can opt out as follows:
|
Closing this issue as we are already tracking this issue in #4406. @tobiasharren please feel free to file a new issue if you run into any other issues. |
Environment data
Expected behaviour
When running a code cell which generates large output (either text, or a series of plots), the ouput cells size should be limited and a scrollbar within the output cell should appear.
(Jupyter: Enable Scrolling For Cell Outputs
is active,
Jupyter: Max Output Size
is 50 (was 200 previously, but lowering it did not help)
Actual behaviour
The entire output is shown as one large chunk without scrollbar.
Steps to reproduce:
create a new file
save a .ipynb file
insert into the first code cell:
for i in range(50): print("test"
insert into a second cell:
from matplotlib import pyplot as plt for i in range(5): plt.figure() plt.plot(range(10), range(10)) plt.show()
run the notebook. (larger numbers lead to the same problem, so it is not just that the threshold is not reached
The text was updated successfully, but these errors were encountered: