diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-11-20 01:18:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-20 01:18:39 -0500 |
commit | b8462477bfd01ff21461065d5063e6b0238ca809 (patch) | |
tree | 266c7a274d833dbc1d0cb8a3581375fc66305f4e /Lib/idlelib/editor.py | |
parent | 7483451577916e693af6d20cf520b2cc7e2174d2 (diff) | |
download | cpython-git-b8462477bfd01ff21461065d5063e6b0238ca809.tar.gz |
bpo-38636: Fix IDLE tab toggle and file indent width (GH-17008)
These Format menu functions (default shortcuts Alt-T and Alt-U)
were mistakenly disabled in 3.7.5 and 3.8.0.
Diffstat (limited to 'Lib/idlelib/editor.py')
-rw-r--r-- | Lib/idlelib/editor.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/idlelib/editor.py b/Lib/idlelib/editor.py index dff104ff0f..92dcf57c4f 100644 --- a/Lib/idlelib/editor.py +++ b/Lib/idlelib/editor.py @@ -186,8 +186,9 @@ class EditorWindow(object): text.bind("<<uncomment-region>>", fregion.uncomment_region_event) text.bind("<<tabify-region>>", fregion.tabify_region_event) text.bind("<<untabify-region>>", fregion.untabify_region_event) - text.bind("<<toggle-tabs>>", self.Indents.toggle_tabs_event) - text.bind("<<change-indentwidth>>", self.Indents.change_indentwidth_event) + indents = self.Indents(self) + text.bind("<<toggle-tabs>>", indents.toggle_tabs_event) + text.bind("<<change-indentwidth>>", indents.change_indentwidth_event) text.bind("<Left>", self.move_at_edge_if_selection(0)) text.bind("<Right>", self.move_at_edge_if_selection(1)) text.bind("<<del-word-left>>", self.del_word_left) |