-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Allow for toolbar cusomization #3178
Comments
I need this feature badly. I am doing this now.
|
@crowdy That code snippet won't work in JupyterLab, only the classic notebook. In JupyterLab, it's possible for an extension to add and remove items from the toolbar. Here's where JupyterLab create the default notebook toolbar: https://github.com/jupyterlab/jupyterlab/blob/master/packages/notebook/src/default-toolbar.ts#L190-L209 |
In particular this is the subject of a extension making tutorial/example http://jupyterlab.readthedocs.io/en/stable/developer/notebook.html#how-to-extend-the-notebook-plugin Still would be nice to have it easier via setting edittor |
Continuation from jupyter/notebook#2965 (comment)
It would be nice if users could customize the notebook toolbar from within JupyterLab. Ideally, users would be able to drag actions in/out of the toolbar (e.g. macOS-style toolbar customization). A much more achievable alternative would be a menu item/command that would open an editor with the toolbar settings JSON and allow users to edit it. This is a UX pattern used in Atom editor (and Sublime Text and others) that's not perfect but it's easy and it works.
The text was updated successfully, but these errors were encountered: