diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2006-08-16 21:45:59 +0000 |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2006-08-16 21:45:59 +0000 |
commit | 7ae354846fff616746eeba6d27ccd5c175591cae (patch) | |
tree | e74de03f1287c4e5e71d8ce4ef07d51f24dbefd0 /Lib/idlelib/Bindings.py | |
parent | f5af05a2111673b9cf39f94a73844bdd4b3c54a9 (diff) | |
download | cpython-git-7ae354846fff616746eeba6d27ccd5c175591cae.tar.gz |
File menu hotkeys: there were three 'p' assignments. Reassign the
'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
Shell menu hotkey from 's' to 'l'.
M Bindings.py
M PyShell.py
M NEWS.txt
Diffstat (limited to 'Lib/idlelib/Bindings.py')
-rw-r--r-- | Lib/idlelib/Bindings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py index d24be3f1e2..a3c9fc45f8 100644 --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py @@ -22,9 +22,9 @@ menudefs = [ None, ('_Save', '<<save-window>>'), ('Save _As...', '<<save-window-as-file>>'), - ('Save Co_py As...', '<<save-copy-of-window-as-file>>'), + ('Save Cop_y As...', '<<save-copy-of-window-as-file>>'), None, - ('_Print Window', '<<print-window>>'), + ('Prin_t Window', '<<print-window>>'), None, ('_Close', '<<close-window>>'), ('E_xit', '<<close-all-windows>>'), |