You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be nice if you could edit entire functions or classes without going line by line. Basically treat any multi-line input as a single entry in the history (like in bash), and have also add a mode where you can edit the multi-line text, using arrow keys to move around within the multi-line text.
So if I had something like
#!python
>>> def func():
... do_stuff()
... print x
>>>
>>> (press up arrow once)
>>> def func():
... do_stuff()
... print x
And then you'd hit some key combo to go into "edit" mode, which would let you edit any line of the function using the arrow keys to move around like in a regular text editor. Hitting enter in the middle of a function would add additional lines; hitting enter at the end would behave the same as normal input. When the prompt is complete, it'd evaluate the entire input.
It'd be nice if you could edit entire functions or classes without going line by line. Basically treat any multi-line input as a single entry in the history (like in bash), and have also add a mode where you can edit the multi-line text, using arrow keys to move around within the multi-line text.
So if I had something like
And then you'd hit some key combo to go into "edit" mode, which would let you edit any line of the function using the arrow keys to move around like in a regular text editor. Hitting enter in the middle of a function would add additional lines; hitting enter at the end would behave the same as normal input. When the prompt is complete, it'd evaluate the entire input.
The text was updated successfully, but these errors were encountered: