[Python-checkins] python/dist/src/Tools/idle keydefs.py,1.3,1.4

Fredrik Lundh fredrik@pythonware.com
Tue, 21 May 2002 14:38:54 +0200


> Patches 558535.  The standard Windows binding for Edit Select All=20
> is Control-A rather than Alt-A.=20
=20
ahem.   Control-A was already assigned to beginning-of-line,
and is also documented as such ("some emacs bindings may
also work"):

windows_keydefs =3D \
...
 '<<beginning-of-line>>': ['<Control-a>', '<Home>'],
...
 '<<select-all>>': ['<Control-a>'],

</F>