├── .eslintignore ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── keymaps └── jupyter-notebook-atom.cson ├── lib ├── dispatcher.js ├── display-area.js ├── main.js ├── notebook-cell.js ├── notebook-editor-view.js ├── notebook-editor.js └── text-editor.js ├── menus └── jupyter-notebook-atom.cson ├── package.json ├── spec ├── jupyter-notebook-atom-spec.coffee └── jupyter-notebook-atom-view-spec.coffee └── styles └── jupyter-notebook-atom.less /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | 5 | *.ipynb 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/jupyter-notebook-atom.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/keymaps/jupyter-notebook-atom.cson -------------------------------------------------------------------------------- /lib/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/lib/dispatcher.js -------------------------------------------------------------------------------- /lib/display-area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/lib/display-area.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/notebook-cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/lib/notebook-cell.js -------------------------------------------------------------------------------- /lib/notebook-editor-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/lib/notebook-editor-view.js -------------------------------------------------------------------------------- /lib/notebook-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/lib/notebook-editor.js -------------------------------------------------------------------------------- /lib/text-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/lib/text-editor.js -------------------------------------------------------------------------------- /menus/jupyter-notebook-atom.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/menus/jupyter-notebook-atom.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/package.json -------------------------------------------------------------------------------- /spec/jupyter-notebook-atom-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/spec/jupyter-notebook-atom-spec.coffee -------------------------------------------------------------------------------- /spec/jupyter-notebook-atom-view-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/spec/jupyter-notebook-atom-view-spec.coffee -------------------------------------------------------------------------------- /styles/jupyter-notebook-atom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/atom-notebook/HEAD/styles/jupyter-notebook-atom.less --------------------------------------------------------------------------------