diff options
Diffstat (limited to 'Lib/idlelib/Bindings.py')
-rw-r--r-- | Lib/idlelib/Bindings.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py index 2269a90..aae6106 100644 --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py @@ -37,9 +37,9 @@ menudefs = [ ('_Undo', '<<undo>>'), ('_Redo', '<<redo>>'), None, - ('Cu_t', '<<Cut>>'), - ('_Copy', '<<Copy>>'), - ('_Paste', '<<Paste>>'), + ('Cu_t', '<<cut>>'), + ('_Copy', '<<copy>>'), + ('_Paste', '<<paste>>'), ('Select _All', '<<select-all>>'), None, ('_Find...', '<<find>>'), @@ -58,11 +58,11 @@ menudefs = [ ('!_Debugger', '<<toggle-debugger>>'), ('!_Auto-open stack viewer', '<<toggle-jit-stack-viewer>>' ), ]), -# ('settings', [ -# ('_Configure Idle...', '<<open-config-dialog>>'), -# None, -# ('Revert to _Default Settings', '<<revert-all-settings>>'), -# ]), + ('settings', [ + ('_Configure Idle...', '<<open-config-dialog>>'), + None, + ('Revert to _Default Settings', '<<revert-all-settings>>'), + ]), ('help', [ ('_IDLE Help...', '<<help>>'), ('Python _Documentation...', '<<python-docs>>'), |