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
I know that this feature will not be implemented in the near future(davidhalter/jedi-vim#736 (comment)) but maybe you can tell me here also where I have to adapt the jedi - code. May be you know a really fast solution which is more like a hack but what I can use local for my requirements?
The text was updated successfully, but these errors were encountered:
The thing is that there is not really a fast solution, otherwise I would already have done it :). The problem is really that the whole architecture was never really done for problems like this one. There is no name binding procedure and there's also no form of caching (because there's no good invalidation for type inference). You could potentially just iterate over all names in a file and use goto on the right ones and then search for definitions in other files. But that's reallly hacky. The Rust code that I'm currently writing has a different architecture and with that it should be easily possible to implement auto imports.
I think #1059 is pretty much the reason why this is not possible. Closing this one, because there's nothing to do here for now.
I know that this feature will not be implemented in the near future(davidhalter/jedi-vim#736 (comment)) but maybe you can tell me here also where I have to adapt the jedi - code. May be you know a really fast solution which is more like a hack but what I can use local for my requirements?
The text was updated successfully, but these errors were encountered: