Ken Nieh
Ken Nieh

Reputation: 105

VSCode autocomplete for Django QuerySet.filter(property__regex='^This not autocomplete')

How to autocomplete property of Django QuerySet.filter in VSCode?

Just like it works in Pycharm Professional Edition as follow,

enter image description here

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

Answers (1)

Brett Cannon
Brett Cannon

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

Related Questions