-
-
Notifications
You must be signed in to change notification settings - Fork 250
Closed
Description
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.
- Bitbucket: https://bitbucket.org/bobf/bpython/issue/111
- Originally Reported By: Anonymous
- Originally Created At: 2010-03-21T07:13:25.618
xuelvming and md5orsha256