diff options
Diffstat (limited to 'Lib/idlelib/editor.py')
-rw-r--r-- | Lib/idlelib/editor.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/editor.py b/Lib/idlelib/editor.py index a667472..606de71 100644 --- a/Lib/idlelib/editor.py +++ b/Lib/idlelib/editor.py @@ -304,6 +304,7 @@ class EditorWindow(object): scriptbinding = ScriptBinding(self) text.bind("<<check-module>>", scriptbinding.check_module_event) text.bind("<<run-module>>", scriptbinding.run_module_event) + text.bind("<<run-custom>>", scriptbinding.run_custom_event) text.bind("<<do-rstrip>>", self.Rstrip(self).do_rstrip) ctip = self.Calltip(self) text.bind("<<try-open-calltip>>", ctip.try_open_calltip_event) |