Re: preferred windows text editor?

2007-05-12 Thread Josiah Carlson
T. Crane wrote:
 Right now I'm using Notepad++.  What are other people using?

If you are looking for editors written in Python (that are generally 
multiplatform using wxPython), there are a few listed: 
http://wiki.wxpython.org/wxPythonPit_Apps .

If you are looking for editors with Python support, there is a listing 
on the Python wiki: http://wiki.python.org/moin/PythonEditors

I use PyPE (http://pype.sf.net) for most of my editing needs.

  - Josiah
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-10 Thread Flavio Preto

I use VIM here too. Mainly because i always switch from Windows to Linux and
using the same text editor is a way to avoid getting crazy.

[]'s
Preto

On 9 May 2007 15:21:41 -0700, BartlebyScrivener [EMAIL PROTECTED]
wrote:


On May 9, 1:26 pm, Looney, James B [EMAIL PROTECTED] wrote:

 I'm using Vim (http://www.vim.org/).

I too vote for VIM. I use it on both Windows XP and Debian Etch. I
can't find anything it doesn't do.

rd

--
http://mail.python.org/mailman/listinfo/python-list

-- 
http://mail.python.org/mailman/listinfo/python-list

Re: preferred windows text editor?

2007-05-10 Thread Ant
On May 9, 11:21 pm, BartlebyScrivener [EMAIL PROTECTED] wrote:
...
 I too vote for VIM. I use it on both Windows XP and Debian Etch. I
 can't find anything it doesn't do.

I also use Vim (well, GVim).

The only thing I find missing is an integrated console for running
code snippets/entire scripts. The runscript plugin is OK, but lacks
interactive use. I have been thinking about some way of interacting
with a Python shell using sockets to send snippets directly to the
shell from Vim, but haven't had time to get very far.

What method of executing code snippets in a Python shell do other Vim
users use? Other than just copy/paste?

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-10 Thread Jorgen Bodde
I prefer PsPad.

If you like Notepad++, PSPad might be a better choice. More intuitive.
I've used Notepad++ for a while, I really disliked the fact that every
new install my settings XML file would get overwritten, and what does
that guy have with Comic sans MS? Every default style is hard coded
into the app, to that strange oddly looking style for comments etc.

Anyway, I do not want to get too personal. PsPad is very nice, I also
use more python-like editors like SPE and UliPad.

- Jorgen

On 10 May 2007 00:57:52 -0700, Ant [EMAIL PROTECTED] wrote:
 On May 9, 11:21 pm, BartlebyScrivener [EMAIL PROTECTED] wrote:
 ...
  I too vote for VIM. I use it on both Windows XP and Debian Etch. I
  can't find anything it doesn't do.

 I also use Vim (well, GVim).

 The only thing I find missing is an integrated console for running
 code snippets/entire scripts. The runscript plugin is OK, but lacks
 interactive use. I have been thinking about some way of interacting
 with a Python shell using sockets to send snippets directly to the
 shell from Vim, but haven't had time to get very far.

 What method of executing code snippets in a Python shell do other Vim
 users use? Other than just copy/paste?

 --
 http://mail.python.org/mailman/listinfo/python-list

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-10 Thread Laurent Pointal
T. Crane a écrit :
 Right now I'm using Notepad++.  What are other people using?
 
 trevis 

Notepad++ :-)

And still use ConTEXT from time to time when I have big (MB) xml files 
to look at.


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-10 Thread Charles Sanders
Ant wrote:
 
 What method of executing code snippets in a Python shell do other Vim
 users use? Other than just copy/paste?
 

Not vim, but good old vi so should work in vim

1. Mark the start of the fragment, for exampls ms (to mark
with label s). Labels a through z are available.
2. Move to the end of the fragment.
3. :'s,.w !python to send the fragment to the python
interpreter

Worked for me when I tried it a few minutes ago. I had never
bothered before - just copied/pasted.

Obviously, you can also mark the end, move to the start and
do something like :.,'ew !python  or mark both the start and
the end, or use line numbers, or labels plus offsets, or
searches, eg :/def/;+5w !python to search forward to the
next occurrence of def and send that line plus the next
five to the interpreter. Whatever works for you. The abbreviate
and map commands can be used to reduce the typing if you are
fanatical.


Charles
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-10 Thread Dick Moores
At 11:06 AM 5/9/2007, T. Crane wrote:
Right now I'm using Notepad++.  What are other people using?

Ulipad.

Dick Moores


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-10 Thread John DeRosa
On Wed, 9 May 2007 13:06:52 -0500, T. Crane
[EMAIL PROTECTED] wrote:

Right now I'm using Notepad++.  What are other people using?

SPE, out of the trunk.  http://sourceforge.net/projects/spe/

John
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-10 Thread Ant
On May 10, 9:59 am, Charles Sanders [EMAIL PROTECTED]
wrote:
 Ant wrote:

  What method of executing code snippets in a Python shell do other Vim
  users use? Other than just copy/paste?

 Not vim, but good old vi so should work in vim

 1. Mark the start of the fragment, for exampls ms (to mark
 with label s). Labels a through z are available.
 2. Move to the end of the fragment.
 3. :'s,.w !python to send the fragment to the python
 interpreter

Yes - that works nicely for code snippets in isolation. My quest for
tighter integration of the Python console/IPython and vim will have to
continue...

--
Ant...

http://antroy.blogspot.com/


-- 
http://mail.python.org/mailman/listinfo/python-list


preferred windows text editor?

2007-05-09 Thread T. Crane
Right now I'm using Notepad++.  What are other people using?

trevis 


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread kyosohma
On May 9, 1:06 pm, T. Crane [EMAIL PROTECTED] wrote:
 Right now I'm using Notepad++.  What are other people using?

 trevis

For Python, I still prefer IDLE or PythonWin.

For other things like cmd, ini, and other text files, I use either
Notepad++ or UltraEdit.

Mike

-- 
http://mail.python.org/mailman/listinfo/python-list


RE: preferred windows text editor?

2007-05-09 Thread Looney, James B
I'm using Vim (http://www.vim.org/).
-JB

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of T. Crane
Sent: Wednesday, May 09, 2007 12:07 PM
To: python-list@python.org
Subject: preferred windows text editor?

Right now I'm using Notepad++.  What are other people using?

trevis 


-- 
http://mail.python.org/mailman/listinfo/python-list
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread Stef Mientki
PyScripter or JALcc
Stef
T. Crane wrote:
 Right now I'm using Notepad++.  What are other people using?
 
 trevis 
 
 
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread Jason
On May 9, 12:06 pm, T. Crane [EMAIL PROTECTED] wrote:
 Right now I'm using Notepad++.  What are other people using?

 trevis

IDLE for short scripts, PyDev under Eclipse for big Python projects,
and the Python shell for basic one-offs.

  --Jason

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread nufuhsus
On May 9, 2:06 pm, T. Crane [EMAIL PROTECTED] wrote:
 Right now I'm using Notepad++.  What are other people using?

I am very noob to this Python game (though it has been around since
1995 me thinks) and currently (I was using ActivePython and then IDLE)
I have been using a combination of Notepad2 urlhttp://www.flos-
freeware.ch/notepad2.html/url and the interpreter (Python 2.5) on a
Windblows X[crement]P[roblem] SP2 machine.

I like IDLE but it seems to stop working after the first few times and
I would then re-install it and it would work a few times more.
ActivePython was cool but I could not find a version of it that used
Python 2.5 (as far as I can see, it only uses 2.4)

Notepad2 allows you to launch your script directly from the editor
(just like IDLE) and has configurable code highlighting. And it is
FREE.

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread EuGeNe Van den Bulke
T. Crane wrote:
 Right now I'm using Notepad++.  What are other people using?
 
 trevis 
 
 
VIM here as well ... here we go again :P

EuGeNe -- http://www.3kwa.com
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread nufuhsus
On May 9, 2:06 pm, T. Crane [EMAIL PROTECTED] wrote:


 Right now I'm using Notepad++.  What are other people using?


I am very noob to this Python game (though it has been around since
1995 me thinks) and currently (I was using ActivePython and then
IDLE)
I have been using a combination of Notepad2 and the interpreter
(Python 2.5) on a
Windblows X[crement]P[roblem] SP2 machine.
urlhttp://www.flos-freeware.ch/notepad2.html/url

I like IDLE but it seems to stop working after the first few times
and
I would then re-install it and it would work a few times more.
ActivePython was cool but I could not find a version of it that used
Python 2.5 (as far as I can see, it only uses 2.4)

Notepad2 allows you to launch your script directly from the editor
(just like IDLE) and has configurable code highlighting. And it is
FREE.

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread nufuhsus
On May 9, 2:06 pm, T. Crane [EMAIL PROTECTED] wrote:
 Right now I'm using Notepad++.  What are other people using?

 trevis

I am very noob to this Python game and currently (I was using
ActivePython and then IDLE) I have been using a combination of
Notepad2 and the interpreter (Python 2.5) on a Windblows
X[crement]P[roblem] SP2 machine.

Get Notepad2 urlhttp://www.flos-freeware.ch/notepad2.html/url

I like IDLE but it seems to stop working after the first few times and
I would then re-install it and it would work a few times more.
ActivePython was cool but I could not find a version of it that used
Python 2.5 (as far as I can see, it only uses 2.4)

Notepad2 allows you to launch your script directly from the editor
(just like IDLE) and has configurable code highlighting. And it is
FREE.

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread Trent Mick
[EMAIL PROTECTED] wrote:
 I like IDLE but it seems to stop working after the first few times and
 I would then re-install it and it would work a few times more.
 ActivePython was cool but I could not find a version of it that used
 Python 2.5 (as far as I can see, it only uses 2.4)

ActivePython is the distribution of Python. The distro includes PyWin32 
(a bunch o' Windows stuff for Python). Part of that stuff is Pythonwin 
-- the editor that you are probably referring to.

There is an ActivePython 2.5.1 now:
http://www.activestate.com/products/activepython/

You should give Komodo Edit a try too:
http://www.activestate.com/products/komodo_edit/


Cheers,
Trent

-- 
Trent Mick
trentm at activestate.com
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread nufuhsus
On May 9, 3:30 pm, Trent Mick [EMAIL PROTECTED] wrote:

 There is an ActivePython 2.5.1 
 now:http://www.activestate.com/products/activepython/

 You should give Komodo Edit a try 
 too:http://www.activestate.com/products/komodo_edit/

Thanks for the heads up Trent.


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread John Salerno
T. Crane wrote:
 Right now I'm using Notepad++.  What are other people using?
 
 trevis 
 
 

I love UltraEdit. It's not free, but very nice.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread Sönmez Kartal
GNU Emacs with python-mode

-- 
Sönmez Kartal

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread tool69
Notepad++ with NppExec plugin and you can launch your scripts inside Np++.

some others, very Powerfull :
http://e-texteditor.com/
http://intype.info/home/index.php
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread BartlebyScrivener
On May 9, 1:26 pm, Looney, James B [EMAIL PROTECTED] wrote:

 I'm using Vim (http://www.vim.org/).

I too vote for VIM. I use it on both Windows XP and Debian Etch. I
can't find anything it doesn't do.

rd

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: preferred windows text editor?

2007-05-09 Thread JussiJ
On May 10, 4:06 am, T. Crane [EMAIL PROTECTED] wrote:

 Right now I'm using Notepad++.  What are other people using?

Zeus: http://www.zeusedit.com



-- 
http://mail.python.org/mailman/listinfo/python-list