IDE for python

Chris Angelico rosuav at gmail.com
Thu May 29 12:51:57 EDT 2014


On Fri, May 30, 2014 at 2:39 AM, Terry Reedy <tjreedy at udel.edu> wrote:
> I am curious how many of the editors people have been recommending have all
> of the following Idle features, that I use constantly.

Regarding SciTE:

> 1. Run code in the editor with a single keypress.

Yes, although for most of what I like to do, it's not appropriate. But
if you're developing a script that runs and then terminates, yes, you
certainly can.

> 2. Display output and traceback in a window that lets you jump from the any
> line in the traceback to the corresponding file and line, opening the file
> if necessary.

Yes; it recognizes the most common formats used by C compilers, as
well as Python's traceback. Pressing F4 repeatedly will cycle you
through the output pane, effectively taking you from one step to
another in the traceback. (Obviously if you have more than one
traceback, it'll go straight from one to another, which won't always
be useful.) You can also double-click a line to go straight there.

> 3. Search unopened files (grep) for a string or re.

Yes, either using grep itself (fourth point) or using an internal
search that's more akin to an old DOS or OS/2 style of search. Either
way, the results come up in the output pane, and F4 will cycle through
them.

> 4. Display grep output in a window that lets you jump from any 'hit' to
> the corresponding file and line, opening the file if necessary.

As above. These three are all one feature, really. You can type
commands in the output pane and they'll be executed; any program
output that matches one of its parseable "this file, this line"
formats (which is true of 'grep -n') will be picked up.

ChrisA



More information about the Python-list mailing list