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

Company backend for Python jedi

Results 15 company-jedi issues
Sort by recently updated
recently updated
newest added

I test the `lsp-python-ms` with the following python code snippet: ```python import numpy as np from numpy import pi, sin a = np.array([1], dtype=bool) if np.in|vert(a) == ~a: print('ok') ```...

Say, if I put the point at the following position denoted by `|` when I'm in python-mode: `a = ~|4` I want to be directed to the definition of unary-arithmetic...

I have to use `jedi:goto-definition` to jump into definitions. But when I do `(add-hook 'python-mode-hook 'jedi:setup)` jedi's and company's completions are get conflict. Is it possible to to use `jedi:goto-definition`...

GNU Emacs 26.3 (build 1, x86_64-w64-mingw32) Using miniconda3 virtual environments Company and company-jedi installed from Melpa: ``` company 20201014.2251 installed company-jedi 20200324.25 installed pyvenv 20191202.1039 installed ``` Prereqs installed: ```...

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...

documentation

Other packages can be auto complete(like render_templates): ![fdda30d00eb4f371a098c012209c81aa5deb5304](https://user-images.githubusercontent.com/41679407/60867602-dc1c2100-a25d-11e9-81a4-6439da72c268.gif) But SQLAlchemy can't(when I type id = db.Column): ![799114b606e995561c1d003f5eb771aa2ce84e86](https://user-images.githubusercontent.com/41679407/60867874-5ea4e080-a25e-11e9-9976-cc61cbd8712f.gif) Here's my setup in ~/.spacemacs.d/init.el ``` (defun dotspacemacs/user-config () ;; python configurations: (require...

bug

## It's normal to work like this: ```python import json import os import sys ... ``` ## but can not complete for PyQt4: ```python from PyQt4 import QtGui,QtCore QtGui.(nothing happend)...

bug

I see some verbose output when the point is at a function, see screenshot pointing at a `print` function in a python buffer. The last line seems like a signature,...

bug

Could not get function signatures to be displayed in mini buffer as shown [here](https://github.com/syohex/emacs-company-jedi/issues/2#issuecomment-111161692) Some points of concern * I am using the latest emacs-27 * I run emacs inside...

bug

Hi, I find that when I use a grouped backend like `'((company-jedi company-files company-gtags company-etags company-keywords) company-dabbrev)`, the company candidate menu flashes quite often each time I type a single...

documentation