2020-02-03 19:45:34 +01:00
|
|
|
;;; ein.el --- jupyter notebook client
|
2019-11-30 08:46:49 +01:00
|
|
|
|
2020-02-03 19:45:34 +01:00
|
|
|
;; Copyright (C) 2012-2019 The Authors of the Emacs IPython Notebook (EIN)
|
2019-11-30 08:46:49 +01:00
|
|
|
|
2020-02-03 19:45:34 +01:00
|
|
|
;; Authors: dickmao <github id: dickmao>
|
|
|
|
;; John Miller <millejoh at millejoh.com>
|
|
|
|
;; Takafumi Arakaki <aka.tkf at gmail.com>
|
|
|
|
;; URL: https://github.com/dickmao/emacs-ipython-notebook
|
2019-11-30 08:46:49 +01:00
|
|
|
;; Keywords: jupyter, literate programming, reproducible research
|
|
|
|
|
|
|
|
;; This file is NOT part of GNU Emacs.
|
|
|
|
|
|
|
|
;; ein.el is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; ein.el is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with ein.el. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Emacs IPython Notebook (EIN) lets you run Jupyter (formerly IPython)
|
|
|
|
;; notebooks within Emacs. It channels all the power of Emacs without the
|
|
|
|
;; idiosyncrasies of in-browser editing.
|
|
|
|
;;
|
2020-04-17 18:19:27 +02:00
|
|
|
;; No require statements, e.g. ``require ein``, are necessary, contrary to the
|
|
|
|
;; `prevailing documentation`_, which should be disregarded.
|
|
|
|
;;
|
2019-11-30 08:46:49 +01:00
|
|
|
;; Org_ users please find ob-ein_, a jupyter Babel_ backend.
|
|
|
|
;;
|
|
|
|
;; EIN was originally written by `[tkf]`_. A jupyter Babel_ backend was first
|
|
|
|
;; introduced by `[gregsexton]`_.
|
|
|
|
;;
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2020-02-03 19:45:34 +01:00
|
|
|
(eval-when-compile (require 'cl))
|
2019-11-30 08:46:49 +01:00
|
|
|
(when (boundp 'mouse-buffer-menu-mode-groups)
|
|
|
|
(add-to-list 'mouse-buffer-menu-mode-groups
|
|
|
|
'("^ein:" . "ein")))
|
|
|
|
|
2020-02-03 19:45:34 +01:00
|
|
|
(provide 'ein)
|
|
|
|
|
2019-11-30 08:46:49 +01:00
|
|
|
;;; ein.el ends here
|