emacs-ipython-notebook/lisp/ein-pkg.el
John Miller d13e85b370 Minimally functional company-mode support.
There is now a company mode backend for ein. It generates completions by sending
complete_request to the running kernel so for the moment no jedi integration.

Configuring is maybe non-obvious - user should at minimum set
`ein:use-auto-complete` and `ein:use-auto-complete-superpack` to nil. Adding a
`(require 'ein-company)` probably should be done somewhere in the user's init
file. This could all be done better so I will attempt to address in later
commits.
2017-04-19 10:12:45 -05:00

7 lines
147 B
EmacsLisp

(define-package "ein"
"0.13.0"
"Emacs IPython Notebook"
'((websocket "1.7")
(request "0.3")
(cl-generic "0.3")
(dash "2.13.0")))