Skip to content

emacsorphanage/company-jedi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

company-jedi.el

melpa badge melpa stable badge gh actions badge

company-mode completion back-end for Python JEDI.

Installation

company-jedi is available on MELPA.

You can install company-jedi with the following command.

M-x package-install [RET] company-jedi [RET]

Please do not install jedi package for company users, it is an auto-complete plugin of jedi

For el-get users

(el-get-bundle elpa:jedi-core)
(el-get-bundle company-jedi :depends (company-mode))

Setup

(defun my/python-mode-hook ()
  (add-to-list 'company-backends 'company-jedi))

(add-hook 'python-mode-hook 'my/python-mode-hook)