mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00

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.
15 lines
361 B
Text
15 lines
361 B
Text
(source gnu)
|
|
(source melpa)
|
|
|
|
(package "ein" "0.13.0" "Emacs IPython Notebook.")
|
|
(package-file "lisp/ein.el")
|
|
(files ("lisp/*.el" "lisp/*.py" :exclude ("lisp/zeroein.el")))
|
|
|
|
(development
|
|
(depends-on "websocket")
|
|
(depends-on "request")
|
|
(depends-on "dash")
|
|
(depends-on "cl-generic")
|
|
(depends-on "ecukes")
|
|
(depends-on "mocker")
|
|
(depends-on "auto-complete"))
|