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

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 11 Jun 2001 17:30:36 -0700


Update of /cvsroot/python/python/dist/src/Tools/idle
In directory usw-pr-cvs1:/tmp/cvs-serv1944

Modified Files:
	keydefs.py 
Log Message:
Make copy, cut and paste events case insensitive.  Reported by Patrick
K. O'Brien on idle-dev.

(Should other bindings follow suit?)


Index: keydefs.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/keydefs.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** keydefs.py	1999/01/04 16:35:02	1.2
--- keydefs.py	2001/06/12 00:30:33	1.3
***************
*** 1,6 ****
  windows_keydefs = \
! {'<<Copy>>': ['<Control-c>'],
!  '<<Cut>>': ['<Control-x>'],
!  '<<Paste>>': ['<Control-v>'],
   '<<beginning-of-line>>': ['<Control-a>', '<Home>'],
   '<<center-insert>>': ['<Control-l>'],
--- 1,6 ----
  windows_keydefs = \
! {'<<Copy>>': ['<Control-c>', '<Control-C>'],
!  '<<Cut>>': ['<Control-x>', '<Control-X>'],
!  '<<Paste>>': ['<Control-v>', '<Control-V>'],
   '<<beginning-of-line>>': ['<Control-a>', '<Home>'],
   '<<center-insert>>': ['<Control-l>'],