]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Make copy, cut and paste events case insensitive. Reported by Patrick
authorGuido van Rossum <guido@python.org>
Tue, 12 Jun 2001 00:30:33 +0000 (00:30 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 12 Jun 2001 00:30:33 +0000 (00:30 +0000)
K. O'Brien on idle-dev.

(Should other bindings follow suit?)

Tools/idle/keydefs.py

index 39eb30613808ebe44b39d9645e6cff59e6f42176..edddd831995928442b9e0f888246386ae6eec282 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>'],