Bug description
Users have reported that when cell inputs in jupyter notebooks become too long, the options for inserting and re-ordering cells disappear (cell toolbar). Specifically, there might be a character limit that triggers this behavior.
How to reproduce
- Open a jupyter notebook and keep typing until the cell toolbar disappears
Expected behaviour
Collapse the toolbar when the character limit is met instead of entirely taking it away.
Actual behaviour
Before adding the 0
After adding the 0
1 Like
Collapse the toolbar when the character limit is met instead of entirely taking it away.
I agree - I proposed this three years ago (time flies) and it is tracked in Controls to expand cell toolbars that overlap cell contents · Issue #12223 · jupyterlab/jupyterlab · GitHub
If you have a GitHub account, can you leave a
on the issue above?
there might be a character limit that triggers this behavior.
There is a bespoke logic checking overlap to ensure your text is not occluded by the cell toolbar
the options for inserting and re-ordering cells disappear
To insert cell below/above you can use B
/A
shortcuts when in command mode. To move cells you can use Ctrl + Shift + Arrow Down/Up or drag them using the area to the left of the cell.
1 Like