pyright-langserver-for-pycharm
pyright-langserver-for-pycharm copied to clipboard
Pyright language server integration for PyCharm Professional
### What happened? When I accept an autocompleted `Literal` value it inserts an `'` or `"` at the end ### Steps to reproduce ```python Command = Literal['first', 'second'] s: Command...
One possible fix for #39. See also #53.
Another possible fix for #39. See also #52.
On CLion, [`ProjectRootManager.getInstance(project).projectSdk`](https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/blob/e8bf705276e9fbade952073e09e0b62d1391b26a/src/main/kotlin/com/insyncwithfoo/pyrightls/Project.kt#L14-L15) returns `null`.
Fixes #35.
### Feature or enhancement Is it possible for this plugin to recognise other file extensions apart from just `.py` and `.pyi` to communicate with `pyright-langserver`? If it were, a thin...
As I have partially explained in #57, I intend to deprecate this plugin and migrate all of its features to [its sister](https://github.com/InSyncWithFoo/pyright-for-pycharm). I have been maintaining them for about 4...
### What happened? Hello, I'm having an issue with the annotations not showing up in pycharm, even though pyright does correctly identify issues with code and logs them. This plugin...