pappasam / jedi-language-server

A Python language server exclusively for Jedi. If Jedi supports it well, this language server should too.
MIT License
574 stars 44 forks source link

Variable detection is amiss #309

Open ItachiSan opened 3 months ago

ItachiSan commented 3 months ago

The issue

I am having issues with type hints in VSCode and Jedi LSP. Namely, the function that is properly typed, such as: Screenshot_20240402_173349 should be unpacked to the relevant variables. However this happens: Screenshot_20240402_173233 (was hovering on the _newversion value)

Expected behavior

I expect the two variables to be detected as such, thus having proper type hint and being "coloured" (detected) as variables.

What happens

The two variables are not highlighted as such nor they carry the type hint information.

ItachiSan commented 3 months ago

Kind of follow up of: microsoft/vscode-python#23049