]> granicus.if.org Git - python/commitdiff
Assume that the user knows when he wants to end the line; don't insert
authorKurt B. Kaiser <kbk@shore.net>
Thu, 14 Feb 2008 04:19:41 +0000 (04:19 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Thu, 14 Feb 2008 04:19:41 +0000 (04:19 +0000)
something he didn't select or complete.
Backport r58306

Lib/idlelib/AutoComplete.py
Lib/idlelib/AutoCompleteWindow.py

index 7085386621fada5c3c97e20341c0973ee3be88d6..e1549be8387d910154eb9eacaab4a3393f558db0 100644 (file)
@@ -27,7 +27,7 @@ class AutoComplete:
 
     menudefs = [
         ('edit', [
-            ("Show completions", "<<force-open-completions>>"),
+            ("Show Completions", "<<force-open-completions>>"),
         ])
     ]
 
index 9cdb830bf7c7d9655e8ed4b705bf4fc4c20fc3d2..be4150db32015f4151ff5df74c8955eb2c16ee01 100644 (file)
@@ -274,20 +274,9 @@ class AutoCompleteWindow:
             self._selection_changed()
             return "break"
 
-        elif keysym == "Return" and not state:
-            # If start is a prefix of the selection, or there was an indication
-            # that the user used the completion window, put the selected
-            # completion in the text, and close the list.
-            # Otherwise, close the window and let the event through.
-            cursel = int(self.listbox.curselection()[0])
-            if self.completions[cursel][:len(self.start)] == self.start or \
-               self.userwantswindow:
-                self._change_start(self.completions[cursel])
-                self.hide_window()
-                return "break"
-            else:
-                self.hide_window()
-                return
+        elif keysym == "Return":
+            self.hide_window()
+            return
 
         elif (self.mode == AutoComplete.COMPLETE_ATTRIBUTES and keysym in
               ("period", "space", "parenleft", "parenright", "bracketleft",