summaryrefslogtreecommitdiffstats
path: root/Tools/idle
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-06-12 00:30:33 (GMT)
committerGuido van Rossum <guido@python.org>2001-06-12 00:30:33 (GMT)
commitac4797a12eed2fb5bcc68ae6e768e5ab4ec5b422 (patch)
treea428a9c302143a44d8dbecd95b77f93aaeb188bd /Tools/idle
parent2a9b36738504672e6c3cc42018669853b9c62566 (diff)
downloadcpython-ac4797a12eed2fb5bcc68ae6e768e5ab4ec5b422.zip
cpython-ac4797a12eed2fb5bcc68ae6e768e5ab4ec5b422.tar.gz
cpython-ac4797a12eed2fb5bcc68ae6e768e5ab4ec5b422.tar.bz2
Make copy, cut and paste events case insensitive. Reported by Patrick
K. O'Brien on idle-dev. (Should other bindings follow suit?)
Diffstat (limited to 'Tools/idle')
-rw-r--r--Tools/idle/keydefs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/idle/keydefs.py b/Tools/idle/keydefs.py
index 39eb306..edddd83 100644
--- a/Tools/idle/keydefs.py
+++ b/Tools/idle/keydefs.py
@@ -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>'],