[ python-Bugs-1356720 ] Ctrl+C for copy does not work when caps-lock is on

SourceForge.net noreply at sourceforge.net
Mon Nov 14 21:28:36 CET 2005


Bugs item #1356720, was opened at 2005-11-14 19:20
Message generated for change (Comment added) made by noamr
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1356720&group_id=5470

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: IDLE
Group: Python 2.4
Status: Open
Resolution: None
Priority: 5
Submitted By: Lenny Domnitser (ldrhcp)
Assigned to: Nobody/Anonymous (nobody)
Summary: Ctrl+C for copy does not work when caps-lock is on

Initial Comment:
I only tested this on Windows/Python 2.4/Idle 1.1.2.
Other shortcuts (Ctrl+V, Ctrl+X, etc.) work just fine,
but Ctrl+C requires a lower case letter.

----------------------------------------------------------------------

Comment By: Noam Raphael (noamr)
Date: 2005-11-14 22:28

Message:
Logged In: YES 
user_id=679426

I didn't reproduce it, but it must be because the key
binding for interrupt-execution is set to "<Control-Key-c>
<Control-Key-C>" only in the "IDLE Classic - Windows"
keybinding set, and not in the Mac and Unix variants, where
it's only "<Control-Key-c>".

I don't find the place to attach a file (new sourceforge
style), so here it is:

Index: config-keys.def
===================================================================
--- config-keys.def     (revision 41443)
+++ config-keys.def     (working copy)
@@ -70,7 +70,7 @@
 end-of-file=<Control-Key-d>
 history-next=<Alt-Key-n> <Meta-Key-n>
 history-previous=<Alt-Key-p> <Meta-Key-p>
-interrupt-execution=<Control-Key-c>
+interrupt-execution=<Control-Key-c> <Control-Key-C>
 view-restart=<Key-F6>
 restart-shell=<Control-Key-F6>
 open-class-browser=<Control-Key-x><Control-Key-b>
@@ -123,7 +123,7 @@
 python-context-help=<Shift-Key-F1>
 history-next=<Control-Key-n>
 history-previous=<Control-Key-p>
-interrupt-execution=<Control-Key-c>
+interrupt-execution=<Control-Key-c> <Control-Key-C>
 view-restart=<Key-F6>
 restart-shell=<Control-Key-F6>
 open-class-browser=<Command-Key-b>

Noam

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1356720&group_id=5470


More information about the Python-bugs-list mailing list