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

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

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.

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

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

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

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 --

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

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 --

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

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

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

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

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. --

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