emacs-ipython-notebook/Cask
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

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"))