Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asford/notebook_input_mode
Jupyter nbextension supporting alternate input modes.
https://github.com/asford/notebook_input_mode
Last synced: 14 days ago
JSON representation
Jupyter nbextension supporting alternate input modes.
- Host: GitHub
- URL: https://github.com/asford/notebook_input_mode
- Owner: asford
- License: unlicense
- Created: 2015-04-12T23:21:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-05T21:02:35.000Z (almost 7 years ago)
- Last Synced: 2024-08-01T16:44:46.924Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 12.7 KB
- Stars: 15
- Watchers: 0
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# notebook_input_mode
Jupyter nbextension supporting alternate input modes such as vim mode
# Deprecated!Note that this extension has been deprecated in favor of [Select Codemirror Keymap](http://jupyter-contrib-nbextensions.readthedocs.io/en/latest/nbextensions/select_keymap/README.html), a `jupyter-contrib-nbextensions` sub-project.
# Installation
* `clone` and run `python setup.py develop`
__or__
* `pip install 'git+https://github.com/asford/notebook_input_mode.git#egg=notebook_input_mode'`
Within a notebook switch on vim mode via the menu bar `Edit -> Vim`.
# Key Mappings
tbd# Developer References
* http://jupyter-notebook.readthedocs.org/en/latest/extending/frontend_extensions.html
* http://jupyter-notebook.readthedocs.org/en/latest/frontend_config.htmlIn JavaScript console use the following to get a list of notebook actions:
```javascript
Object.keys(require('base/js/namespace').actions._actions);
```