views:

14

answers:

0

Hi, I noticed that my PyDev does not autocomplete named arguments. For example,

class Author(models.Model):
    first_name = CharField(max_length=30)
    last_name = CharField(max_length=30)
    email = models.EmailField(blank=True,verbose_n [caret] 

It'd be great if I could hit ctrl+space here and get verbose_name etc. Can this be configured?

Thanks.