diff options
author | Steven M. Gava <elguavas@python.net> | 2002-02-18 01:45:43 (GMT) |
---|---|---|
committer | Steven M. Gava <elguavas@python.net> | 2002-02-18 01:45:43 (GMT) |
commit | 82c6682bb776bb59e10a522897534af69938194f (patch) | |
tree | e89191e53bb908e84f6eb8ddfae94d011574e6d2 /Lib/idlelib/Bindings.py | |
parent | 4974575609ebee40c08d81e98493750b7199b1e6 (diff) | |
download | cpython-82c6682bb776bb59e10a522897534af69938194f.zip cpython-82c6682bb776bb59e10a522897534af69938194f.tar.gz cpython-82c6682bb776bb59e10a522897534af69938194f.tar.bz2 |
further work on config system
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>>'), |