-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
Test: Scrollable notebook output #177719
Labels
Milestone
Comments
This was referenced Mar 21, 2023
Closed
The experimental setting keeps updating to |
This was referenced Mar 21, 2023
whoops, yes. The setting was updated and migrated. (so thanks for testing that as well) |
This was referenced Mar 21, 2023
This was referenced Mar 21, 2023
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Refs: #175778
Complexity: 5
Authors: @amunger, @rebornix
create issue
Create Issue
"notebook.output.scrolling": true
notebook.output.textLineLimit
,notebook.output.wordWrap
,notebook.outputLineHeight
Search for terms within the outputdifferent test itemnotebook.experimental.outputScrolling
to false, reload the notebook, then change it back to true (a link should appear to refresh each output)Try on insiders.vscode.dev as well by either:
re-opening that same noteboook with output
or
Start up a jupyter server from a command prompt to provide kernels
1.
python -m pip install jupyter
2.
python -m jupyter notebook --no-browser --NotebookApp.allow_origin=*
3. copy the URL that the previous command provides and
4. open a notebook -> select kernel -> existing Jupyter Server -> paste the URL from step 3
Some examples to try
Two scrollable output elements for one cell
install pandas first
%pip install pandas
within a cellStreaming output
the scroll bar should stick to the bottom unless it is scrolled up, also notice that the decorations change as it becomes a scrollable element.
Longer than the hard limit of 5000 lines
Known issues
clicking output that contains a link will scroll to that link
can't drag scrollbar while output is being updated
wrong cursor type when hovering scrollbar
Notebook output has no focus border when setting focus to it
Notebook output scrollbar should fade away
The text was updated successfully, but these errors were encountered: