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

Skip to content

Commit ac4797a

Browse files
committed
Make copy, cut and paste events case insensitive. Reported by Patrick
K. O'Brien on idle-dev. (Should other bindings follow suit?)
1 parent 2a9b367 commit ac4797a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Tools/idle/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)