mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 09:31:39 -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.
7 lines
147 B
EmacsLisp
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")))
|