[issue12387] IDLE save keyboard shortcut problem

2022-04-01 Thread David Goncalves
Change by David Goncalves : -- nosy: +dpg nosy_count: 9.0 -> 10.0 pull_requests: +30316 pull_request: https://github.com/python/cpython/pull/32245 ___ Python tracker ___

[issue12387] IDLE save keyboard shortcut problem

2017-06-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy stage: needs patch -> patch review versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker

[issue12387] IDLE save keyboard shortcut problem

2014-06-12 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Attached patch is an attempt to fix the issue, based on msg220332. With this patch, and with IDLE Classic Unix keybinding selected in IDLE, actions like cut=Control-Key-w, redo=Alt-Key-z Meta-Key-z, and emac's style actions like

[issue12387] IDLE save keyboard shortcut problem

2014-06-12 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar saimadhavhebli...@gmail.com: Removed file: http://bugs.python.org/file35590/keybinding-issue12387-v1.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2014-06-12 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar saimadhavhebli...@gmail.com: Added file: http://bugs.python.org/file35591/keybinding-issue12387-v1.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2014-06-12 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar saimadhavhebli...@gmail.com: Removed file: http://bugs.python.org/file35591/keybinding-issue12387-v1.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2014-06-12 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar saimadhavhebli...@gmail.com: Added file: http://bugs.python.org/file35592/keybinding-issue12387-v1.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2014-06-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 55fed3eae14b by Terry Jan Reedy in branch '2.7': Issue #12387: Add missing upper(lower)case versions of default Windows key http://hg.python.org/cpython/rev/55fed3eae14b New changeset 25fd9aeeff91 by Terry Jan Reedy in branch '3.4': Issue #12387:

[issue12387] IDLE save keyboard shortcut problem

2014-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: I pushed Roger's patch so that the Windows section of config-keys.def is in a consistent state. However, this does not fix the problem for config-extensions.def or user versions of config-keys.def. A) The basic method of the key dialog does not allow entry of

[issue12387] IDLE save keyboard shortcut problem

2014-05-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: Reading the Tk Wiki page, it appears that Shift undoes ShiftLock except on Mac, where it does nothing. So there is effectively only ^a and ^A, etc. Looking as the Get New Keys dialog, the Basic Key Binding Entry pane says New keys .. plural, but as far as I

[issue12387] IDLE save keyboard shortcut problem

2014-03-31 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2014-03-02 Thread Westley Martínez
Westley Martínez added the comment: I know that Tk has individual states for whether or not a key is pressed with Caps Lock or Shift or other modifiers, so maybe there is a way to have the shortcuts ignore Caps Lock entirely. More info:

[issue12387] IDLE save keyboard shortcut problem

2014-03-02 Thread Ned Deily
Ned Deily added the comment: See also Modifier Keys on the Tk Wiki: http://wiki.tcl.tk/28331 There are both deliberate and accidental platform-specific behavior differences among Tk implementations. -- nosy: +ned.deily ___ Python tracker

[issue12387] IDLE save keyboard shortcut problem

2012-04-15 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: Attached is a patch to fix the caps-lock issue with Windows key bindings in config-keys.def. -- keywords: +patch Added file: http://bugs.python.org/file25226/windows_caps_lock.patch ___ Python

[issue12387] IDLE save keyboard shortcut problem

2012-04-15 Thread Roger Serwy
Changes by Roger Serwy roger.se...@gmail.com: -- stage: - patch review versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2012-04-15 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Changes look complete and correct as far as I can tell, except that I have some confusion about the relation of Shift and CapsLock key. For instance, Control-C and Control-Shift-C (using the key labels) both interrupt a loop whether or not

[issue12387] IDLE save keyboard shortcut problem

2012-04-14 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: I can confirm this issue on Linux. This issue is caused by not explicitly binding Control-Key-S to save-window in config-keys.def (and in configHandler.py's GetCoreKeys.) Presently, only Control-key-s binds to save-window. Should all the

[issue12387] IDLE save keyboard shortcut problem

2012-04-14 Thread Raymond Hettinger
Raymond Hettinger raymond.hettin...@gmail.com added the comment: I would like to see them all changed. -- nosy: +rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2012-04-14 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I agree; lets be consistently lenient. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2011-06-22 Thread Jacob VB
Changes by Jacob VB jacob.andrew...@gmail.com: -- title: IDLE save hotkey problem - IDLE save keyboard shortcut problem ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2011-06-22 Thread Jacob VB
Jacob VB jacob.andrew...@gmail.com added the comment: IDLE (for Python 3.2) fails to save using the ctrl-s keyboard shortcut when caps-lock is enabled, and instead only saves when ctrl-shift-s is pressed. When caps-lock is disabled, all shortcuts work normally. --

[issue12387] IDLE save keyboard shortcut problem

2011-06-22 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +kbk, terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___ ___

[issue12387] IDLE save keyboard shortcut problem

2011-06-22 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- Removed message: http://bugs.python.org/msg138829 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12387 ___

[issue12387] IDLE save keyboard shortcut problem

2011-06-22 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: (The message I deleted was a duplicate of the original). Verified with 3.2.0 on WinXP (Jacob, I/O issues, including keyboard, especially need system specified. What is yours? If Windows, this might be Windows-specific.) With CAPS LOCK on,

[issue12387] IDLE save keyboard shortcut problem

2011-06-22 Thread Jacob VB
Jacob VB jacob.andrew...@gmail.com added the comment: I'm running Windows 7 Home Premium 64-bit, on an Alienware M17x (a laptop) using the built-in keyboard. It's definitely possible that the problem is Windows-specific; perhaps it has to do with the fact that when caps lock is on the shift