Reputation: 105
How to autocomplete property of Django QuerySet.filter in VSCode?
Just like it works in Pycharm Professional Edition as follow,
I think it's really useful, because Django use too many python magic that will make developers confused.
I only autocomplete objects in another question Pycharm can't auto complete some modules
I want to make it more powerful. And I use Django 2.2 and Python 3.6
Upvotes: 4
Views: 2749
Reputation: 16110
The Python extension for VS Code currently doesn't provide IntelliSense for anything off of objects
as those are dynamically generated and thus require custom support to work.
Upvotes: 2