[issue29339] Interactive: Move to same indentation level as previousline

2017-04-01 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> rejected stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue29339] Interactive: Move to same indentation level as previousline

2017-03-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am inclined to close this. Any objection? -- ___ Python tracker ___ ___

[issue29339] Interactive: Move to same indentation level as previousline

2017-03-14 Thread 12345 67890
Changes by 12345 67890 : -- nosy: -12345 67890 ___ Python tracker ___ ___ Python-bugs-list

[issue29339] Interactive: Move to same indentation level as previousline

2017-03-14 Thread 12345 67890
12345 67890 added the comment: Folks, I have decided that I no longer have the time to resolve this issue. -- ___ Python tracker ___

[issue29339] Interactive: Move to same indentation level as previousline

2017-03-14 Thread Jim Fasarakis-Hilliard
Changes by Jim Fasarakis-Hilliard : -- nosy: -Jim Fasarakis-Hilliard ___ Python tracker ___

[issue29339] Interactive: Move to same indentation level as previousline

2017-02-13 Thread Matthias Bussonnier
Matthias Bussonnier added the comment: > IPython3 solved this issue by adding special magic functions, but this is not > a way for CPython. IPython 5 improve on that with prompt toolkit. It does not break paste, as prompt_toolkit has a bracketed-past mode, that most terminal emulator support

[issue29339] Interactive: Move to same indentation level as previousline

2017-02-11 Thread 12345 67890
12345 67890 added the comment: I guess the workflow has been fixed so that I can submit a PR! I wasn't expecting this so soon, but I will get around to this as soon as I have time. -- ___ Python tracker

[issue29339] Interactive: Move to same indentation level as previousline

2017-02-02 Thread 12345 67890
12345 67890 added the comment: The user is going to have to outdent anyway if we return them to the previous indentation level. Essentially it would be this: [ENTER] set_cursor_to_previous_indentation_level() if first_char_in_is_space: erase_first_char_in()

[issue29339] Interactive: Move to same indentation level as previousline

2017-02-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > The only way that I can think of is to delay indentation until the first > character is typed, and not to indent if it is a space or tab. This will not help for "else" or "except". -- ___ Python tracker

[issue29339] Interactive: Move to same indentation level as previousline

2017-02-01 Thread 12345 67890
: [issue29339] Interactive: Move to same indentation level as previousline Serhiy Storchaka added the comment: Any autoindetation breaks pasting from the clipboard since there is no way to distinguish characters entered from the keyboard from characters pasted from the clipboard. In IDLE or other