From: Patrick K. O'B. <po...@or...> - 2001-06-11 23:10:18
|
VPython inherited this same shortcoming. See below for details. --- Patrick K. O'Brien Orbtech "I am, therefore I think." -----Original Message----- From: idl...@py... [mailto:idl...@py...]On Behalf Of Patrick K. O'Brien Sent: Monday, June 11, 2001 5:33 PM To: IDLE Developers List Subject: [Idle-dev] Why are keybindings case sensitive? Or rather, why aren't any of the keybindings (especially cut, copy and paste) setup to work when one has caps lock on? I fixed this in my version of keydefs.py but this seems like something that IDLE should do by default. Here is the change I made, adding uppercase keybindings. It appears to work fine. windows_keydefs = \ {'<<Copy>>': ['<Control-c>', '<Control-C>'], '<<Cut>>': ['<Control-x>', '<Control-X>'], '<<Paste>>': ['<Control-v>', '<Control-V>'], --- Patrick K. O'Brien Orbtech "I am, therefore I think." _______________________________________________ IDLE-dev mailing list IDL...@py... http://mail.python.org/mailman/listinfo/idle-dev |