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
Run a few cells with large outputs, examples below
while focused in a cell with large output, toggle the scrollability with the command Notebook: toggle scroll cell output, hotkey ctrl+k ctrl+y, and the link in the truncation message.
Use the settings link to find notebook output related settings and try to update them (changing the global scroll setting will determine how cells are initially rendered)
Some examples to try
Streaming output
Output will continuously update but is still able to toggle scrollability
import time
for i in range(200):
time.sleep(.1)
print(i)
Longer than the hard limit of 5000 lines
for i in range(5005):
print(i)
The text was updated successfully, but these errors were encountered:
I can't seem to get ctrl+k y or ctrl+k + ctrl y to work:
I'm using Jupyter pre-release v2023.4.1011171100. Am I missing something? The other methods (i.e. Notebook: toggle scroll cell output) work for me. Let me know if I should file an issue.
Refs: #174951
Complexity: 3
Authors: @amunger, @rebornix
Create Issue
Notebook: toggle scroll cell output
, hotkey ctrl+k ctrl+y, and the link in the truncation message.Some examples to try
Streaming output
Output will continuously update but is still able to toggle scrollability
Longer than the hard limit of 5000 lines
The text was updated successfully, but these errors were encountered: