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
Jupyter extension version:
Identifier ms-toolsai.jupyter
Version 2025.3.0
Last Updated 2025-04-19, 20:21:58
OS Version:
Windows 10 2H22 April patch level
Steps to Reproduce:
Create an .ipynb notebook (or open an existing one)
In a new cell, enter the following code, then run the cell.
for i in range(5):
display(i)
The cell output displays
0
1
2
3
4
Bug 1:
Right-click in the output cell area, e.g. on 4, and select "Copy Cell Output". Open notepad and paste the text. Expected behavior of paste (i.e. clipboard text contents): entire cell output 01234 each number on a separate line, or all selected text if there is a text selection, actual behavior: only 4 was cut and pasted.
Bug 2:
Use the mouse to select all of the text in the cell output (i.e. select 0 through 4). Type Ctrl-C. Open notepad and paste the text. Expected behavior of paste (i.e. clipboard text contents): selected cell output 01234 each number on a separate line, actual behavior: 01234 all numbers smooshed together on one line.
I think you need to go back to the drawing board and work out how to make text selection and clipboard copy in output cells work properly. The Ctrl-C behavior seems to work properly (sometimes) when you make a text selection within a contiguous region of output text, but this is not consistent with the right-click menu, and there is not an easy way to copy the entire cell output by selecting with the mouse because it is really hard to select just the output without also selecting some of the code cell.
The text was updated successfully, but these errors were encountered:
Does this issue occur when all extensions are disabled?: No (Requires Jupyter extension)
Version: 1.99.3 (user setup)
Commit: 17baf84
Date: 2025-04-15T23:18:46.076Z
Electron: 34.3.2
ElectronBuildId: 11161073
Chromium: 132.0.6834.210
Node.js: 20.18.3
V8: 13.2.152.41-electron.0
OS: Windows_NT x64 10.0.19045
Identifier ms-toolsai.jupyter
Version 2025.3.0
Last Updated 2025-04-19, 20:21:58
Windows 10 2H22 April patch level
Steps to Reproduce:
The cell output displays
Bug 1:
Right-click in the output cell area, e.g. on
4
, and select "Copy Cell Output". Open notepad and paste the text. Expected behavior of paste (i.e. clipboard text contents): entire cell output0
1
2
3
4
each number on a separate line, or all selected text if there is a text selection, actual behavior: only4
was cut and pasted.Bug 2:
Use the mouse to select all of the text in the cell output (i.e. select 0 through 4). Type
Ctrl-C
. Open notepad and paste the text. Expected behavior of paste (i.e. clipboard text contents): selected cell output0
1
2
3
4
each number on a separate line, actual behavior:01234
all numbers smooshed together on one line.I think you need to go back to the drawing board and work out how to make text selection and clipboard copy in output cells work properly. The
Ctrl-C
behavior seems to work properly (sometimes) when you make a text selection within a contiguous region of output text, but this is not consistent with the right-click menu, and there is not an easy way to copy the entire cell output by selecting with the mouse because it is really hard to select just the output without also selecting some of the code cell.The text was updated successfully, but these errors were encountered: