You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes code navigation in the standard library a lot less useful. In the standard library there are no inlined type annotations; there are type stubs for almost everything.
This means Jedi won't show you doc strings for most things in the standard library. It also makes code navigation in 3rd party libraries that use type stubs instead of inlined type annotations a lot less useful, for the same reason.
This is basically a duplicate of these pylance issues:
Someone probably used prefer_stubs=True. This is probably an oversight on their end OR (more likely) you are are using the wrong LSP commands :) There's goto "definition" and goto "implementation", whereas the later should land in the standard library. BTW: There's also goto "typeDefinition", which is something else again.
This is basically a duplicate of these pylance issues:
No, those issues actually say the exact opposite thing.
This makes code navigation in the standard library a lot less useful. In the standard library there are no inlined type annotations; there are type stubs for almost everything.
This means Jedi won't show you doc strings for most things in the standard library. It also makes code navigation in 3rd party libraries that use type stubs instead of inlined type annotations a lot less useful, for the same reason.
This is basically a duplicate of these pylance issues:
Would there be a way to have goto definition go to source code rather than type stubs, even if type stubs exist?
The text was updated successfully, but these errors were encountered: