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

The :cursor_start and :cursor_end fields tell us whether we need to prepend the prefix ourselves. Fixes #436
96 lines
3 KiB
EmacsLisp
96 lines
3 KiB
EmacsLisp
;;; ein-jedi.el --- ein Jedi
|
|
|
|
;; Copyright (C) 2012 Takafumi Arakaki
|
|
|
|
;; Author: Takafumi Arakaki <aka.tkf at gmail.com>
|
|
|
|
;; This file is NOT part of GNU Emacs.
|
|
|
|
;; ein-jedi.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.
|
|
|
|
;; ein-jedi.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.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with ein-jedi.el.
|
|
;; If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;;
|
|
|
|
;;; Code:
|
|
|
|
(require 'jedi nil t)
|
|
(require 'jedi-core nil t)
|
|
|
|
(require 'ein-completer)
|
|
(eval-when-compile (require 'ein-connect))
|
|
(declare-function jedi:complete-request "jedi-core")
|
|
(declare-function ein:ac-prepare-completion "ein-ac")
|
|
|
|
(defvar ein:jedi-dot-complete-sources
|
|
'(ac-source-jedi-direct ac-source-ein-direct))
|
|
|
|
(defun ein:jedi--completer-complete ()
|
|
(let ((d (deferred:new #'identity)))
|
|
(ein:completer-complete
|
|
(ein:get-kernel)
|
|
(list :complete_reply
|
|
(cons (lambda (d* &rest args) (deferred:callback-post d* args))
|
|
d))
|
|
(apply-partially (lambda (d* err) (deferred:callback-post d* err)) d))
|
|
d))
|
|
|
|
;;;###autoload
|
|
(defun* ein:jedi-complete (&key (expand ac-expand-on-auto-complete))
|
|
"Run completion using candidates calculated by EIN and Jedi."
|
|
(interactive)
|
|
(lexical-let ((expand expand))
|
|
(deferred:$
|
|
(deferred:parallel ; or `deferred:earlier' is better?
|
|
(jedi:complete-request) ;; need tkf/emacs-jedi submodule
|
|
(ein:jedi--completer-complete))
|
|
(deferred:nextc it
|
|
(lambda (replies)
|
|
(ein:jedi-complete--prepare-completion replies expand))))))
|
|
|
|
(defun ein:jedi-complete--prepare-completion (replies expand)
|
|
(destructuring-bind
|
|
(_ ; ignore `jedi:complete-request' what returns.
|
|
((&key matched_text matches &allow-other-keys) ; :complete_reply
|
|
_)) ; ignore metadata
|
|
replies
|
|
(ein:ac-prepare-completion matches)
|
|
(let ((ac-expand-on-auto-complete expand))
|
|
(ac-start))))
|
|
|
|
;; Why `ac-start'? See: `jedi:complete'.
|
|
|
|
;;;###autoload
|
|
(defun ein:jedi-dot-complete ()
|
|
"Insert \".\" and run `ein:jedi-complete'."
|
|
(interactive)
|
|
(ein:ac-dot-complete (lambda () (ein:jedi-complete :expand nil))))
|
|
|
|
;;;###autoload
|
|
(defun ein:jedi-setup ()
|
|
"Setup auto-completion using EIN and Jedi.el_ together.
|
|
|
|
Jedi.el_ is a Python auto-completion library for Emacs.
|
|
To use EIN and Jedi together, add the following in your Emacs setup before loading EIN.::
|
|
|
|
(setq ein:completion-backend 'ein:use-ac-jedi-backend)
|
|
|
|
.. _Jedi.el: https://github.com/tkf/emacs-jedi"
|
|
(let ((map ein:connect-mode-map))
|
|
(define-key map "\C-c\C-i" 'ein:jedi-complete)))
|
|
|
|
(provide 'ein-jedi)
|
|
|
|
;;; ein-jedi.el ends here
|