[issue17060] IDLE -- jump to home should not go past the PS1 and PS2 prompts

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am closing this instead of #18444 because the latter has more extensive discussion. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> IDLE: Mac OS X pressing ctrl-A in Python shell moved cursor before the

[issue17060] IDLE -- jump to home should not go past the PS1 and PS2 prompts

2015-09-18 Thread Mark Roseman
Changes by Mark Roseman : -- nosy: +markroseman ___ Python tracker ___ ___

[issue17060] IDLE -- jump to home should not go past the PS1 and PS2 prompts

2013-04-02 Thread Roger Serwy
Roger Serwy added the comment: When using the IDLE Classic OSX key set, the beginning-of-line virtual event gets bound to Control-Key-Left. Using this key set I can repeat the behavior that Raymond observed. The .home_callback() in Lib/idlelib/EditorWindow.py contains the logic from #3851

[issue17060] IDLE -- jump to home should not go past the PS1 and PS2 prompts

2013-02-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: On my Win 7 system, with 3.3.0, the first Home sends the cursor to the beginning of the user entry, after ' '. The second sends it to the beginning of the display line. And so forth, as intended. See #3851. (It worked the same with Win xp and 3.1) If are

[issue17060] IDLE -- jump to home should not go past the PS1 and PS2 prompts

2013-01-28 Thread Raymond Hettinger
New submission from Raymond Hettinger: In IDLE's shell, pressing home or control-a currently jumps to the beginning of a line. Instead it should stop *after* theprompt. -- components: IDLE messages: 180841 nosy: rhettinger priority: normal severity: normal status: open title: