Hi all,<br><br>I noticed this wrong behavoiur of autocompletion; I'm changing an already written line (i.e. on the right of the cursor there other letters, not blank space), for example<br><br>models.(UserProfileAccounts, blank=True, null=True)<br>
<br>I begin typing<br><br>models.Many(UserProfileAccounts, blank=True, null=True)<br><br>and the autocompletion gives me some (correct) hints. I choose one (this time "ManyToManyField") and I find myself with<br>
<br>models.ManyToField(UserProfileAccounts, blank=True, null=True)<br><br>I suspect the problem is in the duplicated "Many" in "ManyToManyField".<br><br>You can exploit it with this code<br><br>-----------------------------------------8<--------------------------------------------------<br>
<br>class Thing(object):<br>    word_and_word_too = 5<br>    <br>t = Thing()<br>t.wor[AUTOCOMPLETE HERE]<br><br>you get<br><br>t.word_and_d_too<br>-----------------------------------------8<--------------------------------------------------<br>
<br>Is it an Eric or QScintilla bug?<br><br>Thanks<br><br>Leo<br><br>