mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
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
This commit is contained in:
parent
7711b5f432
commit
b7651761bf
1 changed files with 3 additions and 3 deletions
|
@ -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>'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue