diff options
author | terryjreedy <tjreedy@udel.edu> | 2017-06-28 03:02:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-28 03:02:19 (GMT) |
commit | af68382f68b08a383e7064777cf817375681e434 (patch) | |
tree | 708b476519aaaa54c6e0de19db552121dd8d847d /Misc | |
parent | c4cc5534fd32dfde5564dd44f867f2fd66d3e1da (diff) | |
download | cpython-af68382f68b08a383e7064777cf817375681e434.zip cpython-af68382f68b08a383e7064777cf817375681e434.tar.gz cpython-af68382f68b08a383e7064777cf817375681e434.tar.bz2 |
[3.6] bpo-30723: IDLE -- Enhance parenmatch; add style, flash, and help (GH-2306) (#2460)
* Add 'parens' style to highlight both opener and closer.
* Make 'default' style, which is not default, a synonym for 'opener'.
* Make time-delay work the same with all styles.
* Add help for config dialog extensions tab, including parenmatch.
* Add new tests.
Original patch by Charles Wohlganger.
(cherry picked from commit fae2c35)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2017-06-27-19-05-40.bpo-30723.rQh06y.rst | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -1690,6 +1690,7 @@ John Wiseman Chris Withers Stefan Witzel Irek Wlizlo +Charles Wohlganger David Wolever Klaus-Juergen Wolf Dan Wolfe diff --git a/Misc/NEWS.d/next/IDLE/2017-06-27-19-05-40.bpo-30723.rQh06y.rst b/Misc/NEWS.d/next/IDLE/2017-06-27-19-05-40.bpo-30723.rQh06y.rst new file mode 100644 index 0000000..ceb42a2 --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2017-06-27-19-05-40.bpo-30723.rQh06y.rst @@ -0,0 +1,5 @@ +IDLE: Make several improvements to parenmatch. Add 'parens' style to +highlight both opener and closer. Make 'default' style, which is not +default, a synonym for 'opener'. Make time-delay work the same with all +styles. Add help for config dialog extensions tab, including help for +parenmatch. Add new tests. Original patch by Charles Wohlganger. |