summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2001-07-14 05:26:23 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2001-07-14 05:26:23 (GMT)
commitb7651761bfc0927f996e4b8cfbf1af63b4261a1f (patch)
tree416119472b99a1f4fb8444a3b9894c339248e8b1 /Lib/idlelib
parent7711b5f4322b73ec6f7da519a7d80fde7608ea79 (diff)
downloadcpython-b7651761bfc0927f996e4b8cfbf1af63b4261a1f.zip
cpython-b7651761bfc0927f996e4b8cfbf1af63b4261a1f.tar.gz
cpython-b7651761bfc0927f996e4b8cfbf1af63b4261a1f.tar.bz2
py-cvs-2001_07_13 (Rev 1.3) merge
"Make copy, cut and paste events case insensitive. Reported by Patrick K. O'Brien on idle-dev. (Should other bindings follow suit?)" --GvR
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/keydefs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/idlelib/keydefs.py b/Lib/idlelib/keydefs.py
index 3d34893..455253a 100644
--- a/Lib/idlelib/keydefs.py
+++ b/Lib/idlelib/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>'],