@@ -3,6 +3,33 @@ Released on 2018-06-18?
3
3
======================================
4
4
5
5
6
+ bpo-33768: Clicking on a context line moves that line to the top
7
+ of the editor window.
8
+
9
+ bpo-33763: Replace the code context label widget with a text widget.
10
+
11
+ bpo-33664: Scroll IDLE editor text by lines.
12
+ (Previously, the mouse wheel and scrollbar slider moved text by a fixed
13
+ number of pixels, resulting in partial lines at the top of the editor
14
+ box.) This change also applies to the shell and grep output windows,
15
+ but currently not to read-only text views.
16
+
17
+ bpo-33679: Enable theme-specific color configuration for Code Context.
18
+ (Previously, there was one code context foreground and background font
19
+ color setting, default or custom, on the extensions tab, that applied
20
+ to all themes.) For built-in themes, the foreground is the same as
21
+ normal text and the background is a contrasting gray. Context colors for
22
+ custom themes are set on the Hightlights tab along with other colors.
23
+ When one starts IDLE from a console and loads a custom theme without
24
+ definitions for 'context', one will see a warning message on the
25
+ console.
26
+
27
+ bpo-33642: Display up to maxlines non-blank lines for Code Context.
28
+ If there is no current context, show a single blank line. (Previously,
29
+ the Code Contex had numlines lines, usually with some blank.) The use
30
+ of a new option, 'maxlines' (default 15), avoids possible interference
31
+ with user settings of the old option, 'numlines' (default 3).
32
+
6
33
bpo-33628: Cleanup codecontext.py and its test.
7
34
8
35
bpo-32831: Add docstrings and tests for codecontext.py.
0 commit comments