rmcgibbo/jupyter-emacskeys

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

deadlytackler5 opened this issue · 2 comments

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

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.

Thanks @punchagan. Closing.