]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
py-cvs-2001_07_13 (Rev 1.3) merge
authorKurt B. Kaiser <kbk@shore.net>
Sat, 14 Jul 2001 05:26:23 +0000 (05:26 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Sat, 14 Jul 2001 05:26:23 +0000 (05:26 +0000)
"Make copy, cut and paste events case insensitive.  Reported by Patrick
K. O'Brien on idle-dev. (Should other bindings follow suit?)" --GvR

Lib/idlelib/keydefs.py

index 3d348930fd8f7957596bafd29a4e6670ae1eb213..455253aee0e9f58605a00d5f7b03112122035db6 100644 (file)
@@ -1,7 +1,7 @@
 windows_keydefs = \
-{'<<Copy>>': ['<Control-c>'],
- '<<Cut>>': ['<Control-x>'],
- '<<Paste>>': ['<Control-v>'],
+{'<<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>'],
  '<<close-all-windows>>': ['<Control-q>'],