Skip to content

Commit

Permalink
Stop deleting the rest of the current word on autocomplete.
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie-git committed Jun 29, 2021
1 parent 667bbab commit 4ca1ef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonEditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(self, parent, cPanel, stackManager, **kwargs):
self.AutoCompSetIgnoreCase(True)
self.AutoCompSetFillUps("\t\r\n")
self.AutoCompSetCancelAtStart(True)
self.AutoCompSetDropRestOfWord(True)
self.AutoCompSetDropRestOfWord(False)
self.AutoCompSetCaseInsensitiveBehaviour(stc.STC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE)
self.Bind(stc.EVT_STC_AUTOCOMP_COMPLETED, self.OnACCompleted)
self.Bind(stc.EVT_STC_AUTOCOMP_CANCELLED, self.OnACCancelled)
Expand Down

0 comments on commit 4ca1ef8

Please sign in to comment.