mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Make copy, cut and paste events case insensitive. Reported by Patrick
K. O'Brien on idle-dev. (Should other bindings follow suit?)
This commit is contained in:
parent
2a9b367385
commit
ac4797a12e
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
windows_keydefs = \
|
windows_keydefs = \
|
||||||
{'<<Copy>>': ['<Control-c>'],
|
{'<<Copy>>': ['<Control-c>', '<Control-C>'],
|
||||||
'<<Cut>>': ['<Control-x>'],
|
'<<Cut>>': ['<Control-x>', '<Control-X>'],
|
||||||
'<<Paste>>': ['<Control-v>'],
|
'<<Paste>>': ['<Control-v>', '<Control-V>'],
|
||||||
'<<beginning-of-line>>': ['<Control-a>', '<Home>'],
|
'<<beginning-of-line>>': ['<Control-a>', '<Home>'],
|
||||||
'<<center-insert>>': ['<Control-l>'],
|
'<<center-insert>>': ['<Control-l>'],
|
||||||
'<<close-all-windows>>': ['<Control-q>'],
|
'<<close-all-windows>>': ['<Control-q>'],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue