coc-python icon indicating copy to clipboard operation
coc-python copied to clipboard

Python extension for coc.nvim, fork of vscode-python

Results 100 coc-python issues
Sort by recently updated
recently updated
newest added

My `.vim/coc-settings.json` in my workspace is: ```json { "python.venvPath": "${workspacePath}/.venv", "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": true, "python.linting.enabled": true } ``` But for some reason, `coc.nvim` keeps telling me pylint isn't installed. Is...

When I suspend the vim foreground process in bash shell using `ctrl + z` , the `coc-python` module stops working. This happens specifically with the **MPLS** server. ![coc issue](https://user-images.githubusercontent.com/13623913/93462641-59353280-f906-11ea-8bbe-566075c4472e.png)

Hi, excited to begin using coc. I've been trying to use Intellisense for Python packages on my machine. Most of the things I need are Conda installed, and so they...

I searched the README and noticed that `python.pythonPath` is the path to python binary, not `PYTHONPATH`. So how should I set `PYTHONPATH`? Say I have a project that uses an...

I am getting this error after I installed coc-python. Any help?

Can't reproduce

I'm using [coc-python](https://github.com/neoclide/coc-python) for Python IDE-like features. If I define a [dataclass](https://docs.python.org/3/library/dataclasses.html) I would expect the signature pop-up to show me which fields an instance of this class expects. Instead...

I was trying enable/disable linting from the coc-settings.json. ``` { "python.linting.enabled":true/false } ``` However when I restart the nvim instance, this setting is not being used. I am able to...

Hello, My Vim version is 8.2.1563 and using coc.nvim and coc-python for python, all of them are always keep the newest version. I have 'nmap gd (coc-definition)' in my _vimrc....

In jedi-vim if you type the following, with | being the cursor ```python def my_method(a, b, c, d): pass my_method(1, 2, 3| ``` Then it will show `(a, b, *c*....