-
Notifications
You must be signed in to change notification settings - Fork 301
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
Notebook editor : "Insert cell below" is bugged #2817
Comments
Thanks for reporting this issue, I believe this is a regression and we'll look into this asap. |
@DonJayamanne I am actually looking to make my first open source contributions to VSCode, but I am a newcomer in the open source world. Is this an issue that you think I could try to address myself ? Or do you have any advice on some issues that I should try to fix as a beginner in order to get started ? Thanks |
This seems to only happen after moving cells. |
I would hazard a guess it has to do with monaco editor ids not being in sync. It looks like the new cell is picking up the old monaco editor. |
Validated. |
Bug: Notebook Editor, Interactive Window, Python Editor cells
When clicking on the "Insert cell below" on the left-hand side of a cell (let's name it current-cell), the new cell is inserted below current-cell but all content in the cells that were below current-cell is also shifted upwards by one cell.
As a result, it is as if the new cell had been inserted at the very bottom of the notebook (pay attention to the cell numbers).
Steps to cause the bug to occur
Actual & Expected behavior
Actual behavior : the new cell is inserted below the first cell, but the content of the second cell (
b = 4
) has been shifted upwards into this new cell. Therefore, what previously was the second cell is now empty, and at the bottom of the notebook.Expected behavior : the new cell is inserted below the first cell and remains empty. What previously was the second cell should keep its content and now be in third position.
Your Jupyter and/or Python environment
Please provide as much info as you readily know
Developer Tools Console Output
No output in the console when executing the aforementioned steps.
The text was updated successfully, but these errors were encountered: