![](https://secure.gravatar.com/avatar/f71f5b898ff50fe74a20646643b50795.jpg?s=120&d=mm&r=g)
I'm a bit annoyed at having to give up the 'integrated' environment of IDLE and use ipython, although I concede that ipython is quite nice. In particular I now need an editor. Can anyone help? Unlike you I prefer emacs but haven't yet found an easy win32 binary (any idea where I can get it? I would rather not mess with cygwin etc). Also, it's a bit heavyweight. I will check out crimsoneditor, looks nice. Dave ________________________________ From: scipy-user-bounces@scipy.net [mailto:scipy-user-bounces@scipy.net] On Behalf Of Ryan Krauss Sent: 13 July 2005 14:33 To: SciPy Users List Subject: Re: [SciPy-user] wxpython I am a bit of an editor freak. I have finally decided on VIM. It is a bit painful at first and like VI, it has modes where typing doesn't produce text. But the leads to lots of key board short cuts and it has tab-completion as well. Another good choice is Crimson Editor. It is free and does syntax highlighting for many languages including python. I have used it for matlab, LaTeX, html, python, and C++. http://www.crimsoneditor.com/ Other people may have other suggestions. Ryan Howey, David A wrote: yeah, I've got it running in colour.. I just meant the 'inline' colour changes as you type also, what editor do you use with ipython? I quite liked the idle built in editor Dave ________________________________ From: scipy-user-bounces@scipy.net [mailto:scipy-user-bounces@scipy.net] On Behalf Of Ryan Krauss Sent: 13 July 2005 14:13 To: SciPy Users List Subject: Re: [SciPy-user] wxpython Ipython can be made to run in color if you follow the Windows install instructions. It will also suggest syntax when you hit the tab key. Howey, David A wrote: gui_thread is obsolete and has not been upgraded to handle the latest wxPython. ipython has up-to-date threading support. I've just installed ipython. Seems okay, although I was getting to quite like the look and feel of 'idle', particularly the way it hints at syntax (like excel does) and also uses colours in the interpreter, and links to its own editor. Dave _______________________________________________ SciPy-user mailing list SciPy-user@scipy.net http://www.scipy.net/mailman/listinfo/scipy-user ________________________________ _______________________________________________ SciPy-user mailing list SciPy-user@scipy.net http://www.scipy.net/mailman/listinfo/scipy-user
![](https://secure.gravatar.com/avatar/73f4e1ffd23622a339c1c9303615d7fe.jpg?s=120&d=mm&r=g)
"Howey," == Howey, David A <d.howey@imperial.ac.uk> writes:
Howey,> I'm a bit annoyed at having to give up the 'integrated' Howey,> environment of IDLE and use ipython, although I concede Howey,> that ipython is quite nice. In particular I now need an Howey,> editor. Can anyone help? Unlike you I prefer emacs but Howey,> haven't yet found an easy win32 binary (any idea where I Howey,> can get it? I would rather not mess with cygwin Howey,> etc). Also, it's a bit heavyweight. You can get binary versions of gnu emacs at http://ftp.gnu.org/gnu/windows/emacs/ eg http://ftp.gnu.org/gnu/windows/emacs/emacs-21.3-fullbin-i386.tar.gz No cygwin required. I usually untar it in Program Files and then create a shortcut to bin/runemacs on my desktop. I use them it all the time on win32; after putty and winscp it's the first thing I install on a new windows box. Only thing that keeps me sane in windows land... If you already like emacs, emacs + ipython are a great combination that work well together. You can, for example, configure ipython and emacs so that from ipython you can do In [3]: pwd Out[3]: '/home/jdhunter' In [4]: edit test.py and have test.py appear in a emacs buffer in the running emacs session. Never tried this on windows, though. Also,
ipython -pylab
mode has special support for maptlotlib pylab mode, and will automagically handle gui threading, etc... JDH
![](https://secure.gravatar.com/avatar/6bf7afbdd095bea91434590431817805.jpg?s=120&d=mm&r=g)
On Wednesday 13 July 2005 10:24 am, John Hunter wrote:
If you already like emacs, emacs + ipython are a great combination that work well together. You can, for example, configure ipython and emacs so that from ipython you can do
In [3]: pwd Out[3]: '/home/jdhunter'
In [4]: edit test.py
and have test.py appear in a emacs buffer in the running emacs session. Never tried this on windows, though.
I think you need gnuserv to make this work on windows. This link looks useful: http://www.mirror5.com/software/emacs/windows/faq3.html#assoc -- Darren
![](https://secure.gravatar.com/avatar/3c56f61f3ca8298e0323e74cfbe6ae91.jpg?s=120&d=mm&r=g)
Also take a look at SciTE if you want a small, fast editor with a Python heritage which follows MS Windows editing conventions: http://scintilla.sourceforge.net/SciTE.html It supports single key execution and matplotlib works fine with it. Gary Howey, David A wrote:
I'm a bit annoyed at having to give up the 'integrated' environment of IDLE and use ipython, although I concede that ipython is quite nice. In particular I now need an editor. Can anyone help? Unlike you I prefer emacs but haven't yet found an easy win32 binary (any idea where I can get it? I would rather not mess with cygwin etc). Also, it's a bit heavyweight.
I will check out crimsoneditor, looks nice.
Dave
![](https://secure.gravatar.com/avatar/4dabc91d1db962b0d8cd632c4e0f37ae.jpg?s=120&d=mm&r=g)
SciTE does look pretty cool. When I try to run a python script using the F5 - run, it automatically closes all the plot windows and exists before I can see them. I tried adding a raw input wait and then it waits for me but doesn't finish drawing the plots. What is the right way to do this? Ryan Gary Ruben wrote:
Also take a look at SciTE if you want a small, fast editor with a Python heritage which follows MS Windows editing conventions: http://scintilla.sourceforge.net/SciTE.html It supports single key execution and matplotlib works fine with it. Gary
Howey, David A wrote:
I'm a bit annoyed at having to give up the 'integrated' environment of IDLE and use ipython, although I concede that ipython is quite nice. In particular I now need an editor. Can anyone help? Unlike you I prefer emacs but haven't yet found an easy win32 binary (any idea where I can get it? I would rather not mess with cygwin etc). Also, it's a bit heavyweight.
I will check out crimsoneditor, looks nice.
Dave
_______________________________________________ SciPy-user mailing list SciPy-user@scipy.net http://www.scipy.net/mailman/listinfo/scipy-user
participants (5)
-
Darren Dale
-
Gary Ruben
-
Howey, David A
-
John Hunter
-
Ryan Krauss