summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/AutoCompleteWindow.py
Commit message (Collapse)AuthorAgeFilesLines
* Tkinter rename reversal: remove tkinter package, adapt imports and docs.Georg Brandl2008-05-201-1/+1
|
* Tkinter rename, step 2: fix imports and add stub modules.Georg Brandl2008-05-161-1/+1
|
* Improved AutoCompleteWindow logic. Patch 2062 Tal Einat.Kurt B. Kaiser2008-04-271-7/+12
|
* Assume that the user knows when he wants to end the line; don't insertKurt B. Kaiser2007-10-041-14/+3
| | | | something he didn't select or complete.
* Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;Kurt B. Kaiser2007-02-081-17/+25
| | | | | | mouse and cursor selection in ACWindow implemented; double Tab inserts current selection and closes ACW (similar to double-click and Return); scroll wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
* [ 1621265 ] Auto-completion list placementKurt B. Kaiser2007-02-071-6/+15
| | | | | Move AC window below input line unless not enough space, then put it above. Patch: Tal Einat
* 1. Avoid hang when encountering a duplicate in a completion list. Bug 1571112.Kurt B. Kaiser2006-12-151-1/+4
| | | | | | | 2. Duplicate some old entries from Python's NEWS to IDLE's NEWS.txt M AutoCompleteWindow.py M NEWS.txt
* Merge IDLE-syntax-branch r39668:41449 into trunkKurt B. Kaiser2005-11-181-0/+393
A idlelib/AutoCompleteWindow.py A idlelib/AutoComplete.py A idlelib/HyperParser.py M idlelib/PyShell.py M idlelib/ParenMatch.py M idlelib/configDialog.py M idlelib/EditorWindow.py M idlelib/PyParse.py M idlelib/CallTips.py M idlelib/CallTipWindow.py M idlelib/run.py M idlelib/config-extensions.def A idlelib/MultiCall.py