coc-pyright 1.1.266 → 1.1.269
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 +3 -0
- package/lib/index.js +69695 -680
- package/package.json +20 -4
package/README.md
CHANGED
|
@@ -72,6 +72,9 @@ These configurations are used by `coc-pyright`, you need to set them in your `co
|
|
|
72
72
|
| pyright.completion.importSupport | Enable `python-import` completion source support | true |
|
|
73
73
|
| pyright.completion.snippetSupport | Enable completion snippets support | true |
|
|
74
74
|
| pyright.organizeimports.provider | Organize imports provider, `pyright` or `isort` | pyright |
|
|
75
|
+
| pyright.inlayHints.enable | Enable inlay hints feature | true |
|
|
76
|
+
| pyright.inlayHints.functionReturnTypes | Enable inlay hints for function return types | true |
|
|
77
|
+
| pyright.inlayHints.variableTypes | Enable inlay hints for variable types | true |
|
|
75
78
|
|
|
76
79
|
Additional configuration options can be found in [package.json](./package.json).
|
|
77
80
|
|