summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/CodeContext.py
Commit message (Collapse)AuthorAgeFilesLines
* Noam Raphel: Further developemt of CodeContext feature.Kurt B. Kaiser2004-06-061-10/+10
| | | | | | | | | | | | The visibility state of the code context pane is now persistent between sessions and the pane does not appear in the shell window. M CodeContext.py M EditorWindow.py M NEWS.txt M PyShell.py M config-extensions.def M configHandler.py
* Fix a bug I introduced which causes all block openers at an indent levelKurt B. Kaiser2004-04-261-1/+1
| | | | to be shown, instead of outdenting each level.
* 1. Add an Options menu entry: Code ContextKurt B. Kaiser2004-04-241-17/+29
| | | | | | | | | | 2. Add a <<toggle-code-context>> envent to the [CodeContext] section of config-extensions.def and also a default-on variable, set to 0. 3. Update the help file to include Code Context. M CodeContext.py M config-extensions.def M help.txt
* - New Extension: CodeContext. Provides block structuring hints for codeKurt B. Kaiser2004-04-211-0/+127
which has scrolled above an edit window. Patch 936169 Noam Raphael. A CodeContext.py M NEWS.txt M config-extensions.def