spacemacs/layers/+tools/ipython-notebook/funcs.el
Senghoo Kim b2f014107f Make ipython notebook work with company-mode
By using the Jupyter notebook api, the ipython-notebook layer can be auto-completed by using the company-mode
2020-12-30 10:32:10 +01:00

49 lines
1.7 KiB
EmacsLisp

;;; funcs.el --- ipython-notebook Layer function File for Spacemacs
;;
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
;;
;; Author: Senghoo Kim <me@senghoo.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(when (configuration-layer/package-used-p 'company)
(defun spacemacs/ein-company (command &optional arg &rest ignore)
(interactive (list 'interactive))
(pcase command
(`interactive (company-begin-backend 'company-ein))
(`prefix
(and (--filter (and (boundp it) (symbol-value it) (eql it 'ein:notebook-mode))
minor-mode-list)
(company-grab-symbol-cons "\\.\\|->\\|::" 2)))
(`candidates
(lexical-let ((kernel (ein:get-kernel-or-error))
(arg arg)
(col (current-column)))
(cons :async
(lambda (cb)
(ein:kernel-complete
kernel
(string-trim-right (thing-at-point 'line t))
col
(list :complete_reply
(list #'spacemacs//ein-company-callback cb))
nil)))))))
(defun spacemacs//ein-company-callback (args content metadata)
(let ((matches (append (plist-get content :matches) nil)))
(condition-case err
(progn
(funcall (car args) matches))
(error (error (format "Error %s running ein company completer." err))))))
(defun spacemacs//ein-setup-company ()
(if (eq ein-backend 'jupyter)
(spacemacs|add-company-backends
:backends spacemacs/ein-company
:modes ein:notebook-mode
:append-hooks nil
:call-hooks t))))