summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-09-11 19:48:52 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-09-11 19:48:52 (GMT)
commitfa7d3b13a36ec0ed72aa2d838299ceb8bc5eedca (patch)
tree0d824ecbb23cc2de503357e6214092a0dd1375ba /Lib/idlelib
parentf27623215cbcb1cc23acfd6d2e2e7b3d5b3f994c (diff)
parentdd4754e6a8760d70db1853855c5f6f0f8c1b1f1b (diff)
downloadcpython-fa7d3b13a36ec0ed72aa2d838299ceb8bc5eedca.zip
cpython-fa7d3b13a36ec0ed72aa2d838299ceb8bc5eedca.tar.gz
cpython-fa7d3b13a36ec0ed72aa2d838299ceb8bc5eedca.tar.bz2
Issue #18988: The "Tab" key now works when a word is already autocompleted.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/AutoComplete.py9
-rw-r--r--Lib/idlelib/AutoCompleteWindow.py3
2 files changed, 5 insertions, 7 deletions
diff --git a/Lib/idlelib/AutoComplete.py b/Lib/idlelib/AutoComplete.py
index 929d358..f366030 100644
--- a/Lib/idlelib/AutoComplete.py
+++ b/Lib/idlelib/AutoComplete.py
@@ -160,12 +160,9 @@ class AutoComplete:
if not comp_lists[0]:
return
self.autocompletewindow = self._make_autocomplete_window()
- self.autocompletewindow.show_window(comp_lists,
- "insert-%dc" % len(comp_start),
- complete,
- mode,
- userWantsWin)
- return True
+ return not self.autocompletewindow.show_window(
+ comp_lists, "insert-%dc" % len(comp_start),
+ complete, mode, userWantsWin)
def fetch_completions(self, what, mode):
"""Return a pair of lists of completions for something. The first list
diff --git a/Lib/idlelib/AutoCompleteWindow.py b/Lib/idlelib/AutoCompleteWindow.py
index 7787e70..f666ea6 100644
--- a/Lib/idlelib/AutoCompleteWindow.py
+++ b/Lib/idlelib/AutoCompleteWindow.py
@@ -157,13 +157,14 @@ class AutoCompleteWindow:
self.start = self.widget.get(self.startindex, "insert")
if complete:
completed = self._complete_string(self.start)
+ start = self.start
self._change_start(completed)
i = self._binary_search(completed)
if self.completions[i] == completed and \
(i == len(self.completions)-1 or
self.completions[i+1][:len(completed)] != completed):
# There is exactly one matching completion
- return
+ return completed == start
self.userwantswindow = userWantsWin
self.lasttypedstart = self.start