How to hide the floating cell toolbar in Jupyterlab?

Viewed 20

I am used to the keyboard shortcuts and I don't like the cell toolbar.

I did my best to search but I still can't find how. If someone knows please let me know.

cell toolbar

1 Answers

Straight from the documentation:

If you would like to disable the cell toolbar, run jupyter labextension disable @jupyterlab/cell-toolbar-extension on the command line. You can enable it again by running jupyter labextension enable @jupyterlab/cell-toolbar-extension.

Related