rmcgibbo / jupyter-emacskeys

Emacs keybindings for Jupyter notebook
88 stars 11 forks source link

How to remove it and revert back to original key bindings? #1

Closed deadlytackler5 closed 8 years ago

deadlytackler5 commented 8 years ago

How to remove it and revert back to original key bindings. Am on Ubuntu 16.04...

punchagan commented 8 years ago

You can get the location of the nbextensions directory by running the following snippet:

from notebook.nbextensions import _get_nbextension_dir
_get_nbextension_dir(user=True)  #user = False if installed as root

You can remove the extension from there to restore original keybindings.

rmcgibbo commented 8 years ago

Thanks @punchagan. Closing.