company-jedi icon indicating copy to clipboard operation
company-jedi copied to clipboard

How in the world you setup this thing

Open kirk86 opened this issue 5 years ago • 0 comments

Here's my config

(use-package company
  :ensure t
  :config
  (add-hook 'after-init-hook 'global-company-mode)
  (setq company-idle-delay 0)
  (setq company-minimum-prefix-length 3))

 (use-package company-jedi
  :ensure t
  :config
  (with-eval-after-load 'company
    (add-hook 'python-mode-hook
              (lambda ()
                (add-to-list 'company-backends 'company-jedi))))
  (add-hook 'python-mode-hook 'jedi:setup)
  (setq jedi:complete-on-dot t))

What's wrong with it? Editing a python file I get no autocompletion and have this epc on 3 buffer appearing

image

I use pyvenv for my virtualenvs and miniconda.

I have jedi and epc installed on my miniconda base environment and I want this to be picked up by company-jedi.

Later if I activate some environment using pyvenv which for instance has matplotlib, I want company-jedi to give me autocompletion for that package while using jedi and epc installed on my miniconda base environment?

kirk86 avatar Oct 09 '19 12:10 kirk86