diff options
author | Tal Einat <taleinat@gmail.com> | 2019-07-23 12:22:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-23 12:22:11 (GMT) |
commit | 7123ea009b0b004062d91f69859bddf422c34ab4 (patch) | |
tree | 710e79beacd4853354ccb4a5d6333148914e54ec /Lib/idlelib/mainmenu.py | |
parent | 1ebee37dde5c2aabc8e2d2c7bbe2a69b293133bb (diff) | |
download | cpython-7123ea009b0b004062d91f69859bddf422c34ab4.zip cpython-7123ea009b0b004062d91f69859bddf422c34ab4.tar.gz cpython-7123ea009b0b004062d91f69859bddf422c34ab4.tar.bz2 |
bpo-17535: IDLE editor line numbers (GH-14030)
Diffstat (limited to 'Lib/idlelib/mainmenu.py')
-rw-r--r-- | Lib/idlelib/mainmenu.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/idlelib/mainmenu.py b/Lib/idlelib/mainmenu.py index b0c85cf..fc51fb1 100644 --- a/Lib/idlelib/mainmenu.py +++ b/Lib/idlelib/mainmenu.py @@ -100,7 +100,8 @@ menudefs = [ ('Configure _IDLE', '<<open-config-dialog>>'), None, ('Show _Code Context', '<<toggle-code-context>>'), - ('Zoom Height', '<<zoom-height>>'), + ('Show _Line Numbers', '<<toggle-line-numbers>>'), + ('_Zoom Height', '<<zoom-height>>'), ]), ('window', [ |