How to undo/redo changes inside the selected cell in Jupyter notebook?
Asked Answered
B

2

9

I am using Jupyter Notebook (from Anaconda JupyterLab) on Windows 10 and tried to undo/redo changes in the selected cell. However, I can only undo/redo changes in the whole notebook.

For example, I edited cell#1 then cell#2. Say I want to undo changes in cell#1, so I go to cell#1 and press Control+Z, it will however undo the change in cell#2.

My friend using Mac doesn't have this issue. Are there any settings for this? I searched online and didn't find anyone who has the same problem. It is so weird!

Bibb answered 12/8, 2021 at 20:28 Comment(2)
There is now a pull request addressing this issue - please do test it out on Binder and contribute feedback to the discussion.Bluma
I updated the answer since JupyterLab 3.2 is out with a setting to restore the old behaviour.Bluma
B
15

This global undo/redo is a new feature that enables Real Time Collaboration which was added in JupyterLab 3.1. It is indeed sub-optimal for many use cases.

JupyterLab 3.2 allows to disable notebook-wide history tracking (see issue 10791 nad PR 10949), but with a caveat: when moving cells you may loose the undo history, which is why the setting is marked as experimental (it requires more work to be exposed or enabled by a default). To get the selective undo/redo please add:

{
    "experimentalDisableDocumentWideUndoRedo": true
}

in Advanced Settings EditorNotebook, save, and reload JupyterLab (if you use it in a browser a refresh should suffice).

You can also stick with JupyterLab 3.0 if this is a deal breaker. To downgrade you can use pip:

pip install "jupyterlab<3.1"

or conda:

conda install -c conda-forge "jupyterlab<3.1"

but I would recommend sticking with JupyterLab 3.2 and trying out the new setting so you can contribute to the discussion (if you experience any problems or believe it could be improved).

Bluma answered 12/8, 2021 at 20:45 Comment(4)
I see! my friend (3.0) and I (3.1) are using different versions of jupyter lab. Thanks for the help!Bibb
github.com/jupyterlab/jupyterlab/issues/…Mallorymallow
As commented on the issue you very likely use 3.1 and not 3.2.Bluma
So the feature is required for collaborative editing, right? That probably means it will stay default... Well, another reason to just stick with jupyter-notebook...Bethune
D
4

Recently I've also experienced the same annoying problem. I'm adding a picture here to illustrate how to disable "document-wide undo/redo".

JupyterLab -> Settings -> Advanced Settings Editor -> Notebook -> Ctrl-F to find "undo" -> check the box "Experimental settings to...".

After that remember to close and re-open JupyterLab!

enter image description here

Defect answered 4/8, 2022 at 19:55 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.