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

A strange bug since weeks ago. When I open a file, everything is ok for a while, then if there is an error, and the cursor is under this error....

Can't reproduce

NVIM v0.5.0-812-gd17e50879 coc-python 1.2.13 Snippets don't expand as expected. Behavior before fix: ![image](https://user-images.githubusercontent.com/16717904/102955919-f1e4db00-4511-11eb-8bbe-4e1085209824.png) Behavior after fix: ![image](https://user-images.githubusercontent.com/16717904/102955950-1345c700-4512-11eb-9e68-61524ad95e9d.png)

I've created a venv in ~/projects/my_project/test_venv with: cd ~/projects/my_project python -m venv test_venv I've tried setting: python.venvFolders: ["/home/username/projects/my_project/test_venv"], python.venvPath: ["/home/username/projects/my_project/test_venv"], in my cocconfig. But when I run the coccommand python.setIntepreter,...

I have this plugin configured (using vim-plug) as `Plug 'neoclide/coc-python', {'do': 'yarn install --frozen-lockfile'}` Seems like the yarn install fails currently: ``` $ yarn install --frozen-lockfile yarn install v1.22.10 warning...

Hi, Where and how can I set the settings of the coc-python? I have the problem where the popup dialogue from CoC goes away fast and I cannot select anything....

Given a directory structure as follows: ``` main.py parent/ child1.py child2.py ``` with the following contents: `main.py` ```python from parent import child1 if __name__ == "__main__": child1.greet() ``` `child1.py` ```python...

Hi all, 1) When putting Coc side by side with VS Code, the same (local, not standard Python package) has a different set of autocomplete suggestions. Coc has a handful...

[coc.nvim] error: Uncaught exception: Error: spawn pyenv ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) at onErrorNT (internal/child_process.js:469:16) [coc.nvim] error: Uncaught exception: Error: spawn python3.7 ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19) at onErrorNT (internal/child_process.js:469:16) at processTicksAndRejections...

Hello. I got a problem when having the following CocConfig: ```json { "suggest.enablePreview": true, "python.jediEnabled": false, "python.linting.flake8Enabled": true, "python.linting.pylintEnabled": false, "suggest.timeout": 5000 } ``` I got en error that I...

Be explicit on how to use `Python: Sort Imports` in neovim It's better to be explicit because some people haven't used Visual Studio before coc.nvim. --- This change is [](https://reviewable.io/reviews/neoclide/coc-python/294)