diff options
author | Raymond Hettinger <python@rcn.com> | 2002-05-21 12:26:59 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-05-21 12:26:59 (GMT) |
commit | 8eaa3ad22c966e4a1c405e16f1987b44fc417868 (patch) | |
tree | da318a987fa264c68444844103e7f46ceed3c870 /Tools/idle | |
parent | 2513357c4b8a2a5c2a5da9e967963f9988caec11 (diff) | |
download | cpython-8eaa3ad22c966e4a1c405e16f1987b44fc417868.zip cpython-8eaa3ad22c966e4a1c405e16f1987b44fc417868.tar.gz cpython-8eaa3ad22c966e4a1c405e16f1987b44fc417868.tar.bz2 |
Patches 558535. The standard Windows binding for Edit Select All
is Control-A rather than Alt-A.
Diffstat (limited to 'Tools/idle')
-rw-r--r-- | Tools/idle/keydefs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/idle/keydefs.py b/Tools/idle/keydefs.py index edddd83..fddf278 100644 --- a/Tools/idle/keydefs.py +++ b/Tools/idle/keydefs.py @@ -22,7 +22,7 @@ windows_keydefs = \ '<<save-copy-of-window-as-file>>': ['<Alt-Shift-s>'], '<<save-window-as-file>>': ['<Alt-s>'], '<<save-window>>': ['<Control-s>'], - '<<select-all>>': ['<Alt-a>'], + '<<select-all>>': ['<Control-a>'], '<<toggle-auto-coloring>>': ['<Control-slash>'], '<<undo>>': ['<Control-z>']} |