summaryrefslogtreecommitdiff
path: root/Tools/idle/extend.py
Commit message (Collapse)AuthorAgeFilesLines
* migrate to use of IdleConf and config files to set optionsJeremy Hylton2000-03-031-12/+0
| | | | | | | | | | | | | | | | | | | | | | | idle.py: Load the config files before anything else happens XXX Need to define standard way to get files relative to the IDLE install dir PyShell.py: ColorDelegator.py: Get color defns out of IdleConf instead of IdlePrefs EditorWindow.py: Replace hard-coded font & window size with config options Get extension names via IdleConf.getextensions extend.py: Obsolete. Extensions defined in config file. ParenMatch.py: Use config file for extension options. Revise comment about parser requirements. Simplify logic on find returning None.
* Might as well enable CallTips by default.Guido van Rossum1999-06-041-0/+1
| | | | If there are too many complaints I'll remove it again or fix it.
* Added ScriptBinding to standard bindings.Guido van Rossum1999-01-091-0/+1
|
* Add new extension to reformat a (text) paragraph.Guido van Rossum1999-01-041-0/+1
|
* Checking in IDLE 0.2.Guido van Rossum1999-01-021-0/+9
Much has changed -- too much, in fact, to write down. The big news is that there's a standard way to write IDLE extensions; see extend.txt. Some sample extensions have been provided, and some existing code has been converted to extensions. Probably the biggest new user feature is a new search dialog with more options, search and replace, and even search in files (grep). This is exactly as downloaded from my laptop after returning from the holidays -- it hasn't even been tested on Unix yet.