diff options
author | Guido van Rossum <guido@python.org> | 2001-06-12 00:30:33 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-06-12 00:30:33 +0000 |
commit | da5c1bfafeaa93aa85b77b461185267ce7fc756e (patch) | |
tree | 8c729922f111fa2e6b7fd29bf2b987f269772ecc /Tools/idle | |
parent | 448dbde75f8e815ce5605b89243790f9baeeb8c7 (diff) | |
download | cpython-da5c1bfafeaa93aa85b77b461185267ce7fc756e.tar.gz |
Make copy, cut and paste events case insensitive. Reported by Patrick
K. O'Brien on idle-dev.
(Should other bindings follow suit?)
Diffstat (limited to 'Tools/idle')
-rw-r--r-- | Tools/idle/keydefs.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/idle/keydefs.py b/Tools/idle/keydefs.py index 39eb306138..edddd83199 100644 --- a/Tools/idle/keydefs.py +++ b/Tools/idle/keydefs.py @@ -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>'], |