Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b765176

Browse files
committed
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
1 parent 7711b5f commit b765176

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/idlelib/keydefs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
windows_keydefs = \
2-
{'<<Copy>>': ['<Control-c>'],
3-
'<<Cut>>': ['<Control-x>'],
4-
'<<Paste>>': ['<Control-v>'],
2+
{'<<Copy>>': ['<Control-c>', '<Control-C>'],
3+
'<<Cut>>': ['<Control-x>', '<Control-X>'],
4+
'<<Paste>>': ['<Control-v>', '<Control-V>'],
55
'<<beginning-of-line>>': ['<Control-a>', '<Home>'],
66
'<<center-insert>>': ['<Control-l>'],
77
'<<close-all-windows>>': ['<Control-q>'],

0 commit comments

Comments
 (0)