Jack Cherng

Results 289 comments of Jack Cherng

I found that intelephense premium supoprts `executeCommandProvider` but there is no `intelephense.index.workspace` command. Here's the capability diff between free and premium. ```diff { "capabilities": { - "codeActionProvider": False, + "codeActionProvider":...

We do have some logics for `python.analysis.extraPaths` but I don't think LSP-pyright have ever included the current project path. What we do for `python.analysis.extraPaths` is to find Sublime Text API...

Since your description is pretty specific, how do you find LSP-pyright adds the current project path to `python.analysis.extraPaths`? Or, maybe, what you are actually trying to achieve?

Didn't see `Path` (plaintext search) in pyright's recent changelog either 🤔

> In the previous version, my custom module could be imported normally, but in this latest version, my project's custom module cannot be recognized. So I want to ask if...

![image](https://github.com/sublimelsp/LSP-pyright/assets/6594915/a7de8f2d-89e0-4fb9-a16b-1e909277b997) I am not able to reproduce this with the latest released LSP-pyright. Could you share your LSP-pyright's settings? --- Could your issue be reproduced in Sublime Text's safe mode...

Still can't reproduce, even with the exact plugin settings. ![image](https://github.com/sublimelsp/LSP-pyright/assets/6594915/b40e20c9-4844-42c5-97f7-921542f47732) ```js // Settings in here override those in "LSP-pyright/LSP-pyright.sublime-settings" { "settings": { "python.analysis.extraPaths": [ "C:\\Users\\jfcherng\\AppData\\Local\\Programs\\Python\\Python38\\Lib", "C:\\Users\\jfcherng\\AppData\\Local\\Programs\\Python\\Python38\\Lib\\site-packages", "./" ], "python.analysis.autoSearchPaths": true,...

> Could your issue be reproduced in Sublime Text's safe mode without changing any LSP-pyright's settings? This hasn't been answered yet.

Someone probably has the same issue: https://github.com/microsoft/pyright/issues/7016#issuecomment-2042476674 But it's [claimed fixed](https://github.com/microsoft/pyright/pull/7654) in pyright 1.1.360, which is LSP-pyright 1.3.1 🤔

> @jfcherng How to roll back to the previous version or a specific version I guess basically you want Package Control to not manage it. ``` "unmanaged_packages_ignore": [], ``` ---...