Erik De Bonte

Results 347 comments of Erik De Bonte

@judfs, see https://github.com/microsoft/pyright/issues/3131. This is by design. If you think your scenario is somehow different from than one, please open a new issue.

Navigating to settings UI using vscode API: https://stackoverflow.com/questions/53584266/opening-vs-code-settings-window-from-extension-with-specific-search-query

@erictraut, do you know if this is intentional for some reason? >Need to investigate what typescript does in this case. Created Python repro: ```python # declare.py def func(): return 1...

> The "Find All References" behavior is intentional. The name must match exactly for it to be considered a reference. That's an important optimization. @erictraut, "Show Call Hierarchy" has a...

@RezaSR, as Eric explains [above](https://github.com/microsoft/pylance-release/issues/3235#issuecomment-1409493597) for "Find All References" it would be expensive for us to determine all the possible aliases for the target function. The same issue applies to...

This issue has been fixed in prerelease version 2023.3.41, which we've just released. You can find the changelog here: [CHANGELOG.md](https://github.com/microsoft/pylance-release/blob/main/CHANGELOG.md#2023341-29-March-2023-PreRelease)

> when refactoring i can freely change file names, and change only single import instead of many through the app code For what it's worth, when you rename files Pylance...

This bug is a side-effect of changes made for https://github.com/microsoft/pylance-release/issues/1905 and https://github.com/microsoft/pylance-release/issues/4734. We're still filtering out too many members on enum instances.

This issue has been fixed in prerelease version 2024.4.100, which we've just released. You can find the changelog here: [CHANGELOG.md](https://github.com/microsoft/pylance-release/blob/main/CHANGELOG.md#20244100-4-April-2024-PreRelease)

> [basedpyright](https://github.com/detachhead/basedpyright) solves this problem because the vscode extension uses the version installed in your project instead of the one bundled with the extension @DetachHead, this is not a good...