mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00
parent
b024963a36
commit
d8e5a3e1bc
5 changed files with 11 additions and 12 deletions
|
@ -152,7 +152,7 @@ Usage
|
|||
|
||||
2. Require module::
|
||||
|
||||
(require 'ein2)
|
||||
(require 'ein)
|
||||
|
||||
3. Start `IPython notebook server`_.
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
(declare-function tramp-dissect-file-name "tramp")
|
||||
|
||||
|
||||
(require 'ein2) ; get autoloaded functions into namespace
|
||||
(require 'ein) ; get autoloaded functions into namespace
|
||||
(require 'ein-utils)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
(define-package "ein2"
|
||||
"2.0"
|
||||
"Emacs IPython Notebook with support for IPython 2.x and beyond."
|
||||
"Emacs IPython Notebook 2"
|
||||
'((websocket "1.3")
|
||||
(request "0.2")
|
||||
;; `auto-complete' is not really a dependency, but who use EIN w/o AC?
|
||||
|
|
|
@ -1,21 +1,20 @@
|
|||
;;; ein2.el --- IPython 2.x notebook client in Emacs
|
||||
;;; ein.el --- IPython notebook client in Emacs
|
||||
|
||||
;; Copyright (C) 2012- Takafumi Arakaki
|
||||
|
||||
;; Author: Takafumi Arakaki <aka.tkf at gmail.com>
|
||||
;; John Miller <aka.millejoh at mac.com>
|
||||
;; URL: http://millejoh.github.com/emacs-ipython-notebook/
|
||||
;; URL: http://tkf.github.com/emacs-ipython-notebook/
|
||||
;; Keywords: applications, tools
|
||||
;; Version: 2.0
|
||||
;; Version: 0.2.1alpha2
|
||||
|
||||
;; This file is NOT part of GNU Emacs.
|
||||
|
||||
;; ein2.el is free software: you can redistribute it and/or modify
|
||||
;; 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.
|
||||
|
||||
;; ein2.el is distributed in the hope that it will be useful,
|
||||
;; 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.
|
||||
|
@ -60,6 +59,6 @@
|
|||
;; users who prefer manual installation.
|
||||
(require 'ein-loaddefs)
|
||||
|
||||
(provide 'ein2)
|
||||
(provide 'ein)
|
||||
|
||||
;;; ein2.el ends here
|
||||
;;; ein.el ends here
|
|
@ -72,7 +72,7 @@
|
|||
|
||||
;;; Configurations
|
||||
(eval-when-compile (require 'ein-notebooklist))
|
||||
(require 'ein2)
|
||||
(require 'ein)
|
||||
|
||||
;; auto-complete
|
||||
(setq ein:use-auto-complete-superpack t)
|
||||
|
|
Loading…
Add table
Reference in a new issue