coc-pyright 1.1.176 → 1.1.185
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/lib/index.js +515 -522
- package/package.json +25 -9
- package/schemas/pyrightconfig.schema.json +6 -0
package/README.md
CHANGED
|
@@ -65,6 +65,7 @@ These configurations are used by `coc-pyright`, you need to set them in your `co
|
|
|
65
65
|
| python.sortImports.path | Path to isort script, default using inner version | '' |
|
|
66
66
|
| python.sortImports.args | Arguments passed to isort | [] |
|
|
67
67
|
| pyright.server | Custom `pyright-langserver` path | '' |
|
|
68
|
+
| pyright.disableCompletion | Disables completion from Pyright, left other LSP features work | false |
|
|
68
69
|
| pyright.disableDiagnostics | Disable diagnostics from Pyright | false |
|
|
69
70
|
| pyright.completion.snippetSupport | Enable completion snippets support | true |
|
|
70
71
|
| pyright.organizeimports.provider | Organize imports provider, `pyright` or `isort` | pyright |
|