From: Frank C. <fc...@pu...> - 2001-09-09 15:47:34
|
I'm considering contributing code to NetBeans as an IDE to do Jython script editing. I'm wondering what people are using to edit Jython scripts? Information on NetBeans is at http://www.netbeans.org Info on my project is at http://www.pushtotest.com -Frank -- Frank Cohen, founder, PushToTest, www.pushtotest.com, phone: 408 374 7426 Come to PushToTest for Load, a free open-source tool for performance and scalability testing and data migration. |
From: Carlos Q. <car...@we...> - 2001-09-09 16:11:04
|
On Sunday 09 September 2001 18:47, Frank Cohen wrote: I made a plugin for including a Jython interpreter in jEdit http://www.jedit.org jEdit is an excellent editor that has Python syntax coloring an quite many other features. I use it normally and I can test the stuff directly Carlos > I'm considering contributing code to NetBeans as an IDE to do Jython script > editing. I'm wondering what people are using to edit Jython scripts? > > Information on NetBeans is at http://www.netbeans.org > Info on my project is at http://www.pushtotest.com > > -Frank |
From: Ype K. <yk...@xs...> - 2001-09-09 21:38:21
|
Frank, >I'm considering contributing code to NetBeans as an IDE to do Jython script >editing. I'm wondering what people are using to edit Jython scripts? On unix I use vi, on the mac BBEdit, and everywhere else any flat text editor. I grew up in vi and somehow never needed emacs. Vi has good python support under unix (syntax coloring, indentation). BBEdit has very nice multifile regex searching capabilities, but I use python/jython only very occasionaly on the Mac. Surprisingly the flat text editors on other platforms are a lot easier to use with python than I expected because of the easy syntax. They do leave the occasional missing colon or inconsistent dedent, so better support for python is certainly possible, but not a prime concern. None of the editors I use can identify a possible NameError. Since this is my most frequent mistake (mistyping a name), this might be really nice to have. Importing modules just for name editing purposes might be overkill, though. Good luck, Ype |
From: dman <ds...@ri...> - 2001-09-09 22:35:25
|
On Sun, Sep 09, 2001 at 11:43:57PM +0100, Ype Kingma wrote: | Frank, | | >I'm considering contributing code to NetBeans as an IDE to do Jython script | >editing. I'm wondering what people are using to edit Jython scripts? I too use vim or gvim (depending on whether I want to work in the console I'm in or a new GUI window). | On unix I use vi, on the mac BBEdit, | and everywhere else any flat text editor. | I grew up in vi and somehow never needed emacs. Vi has good | python support under unix (syntax coloring, indentation). Which vi are you using? vim has been ported to the mac as well as almost every other platform. I just can't deal with any other editor :-). (BTW, I even have gvim built with the GTK+ gui to run in XFree under cygwin on win2k) -D |
From: Ype K. <yk...@xs...> - 2001-09-11 17:09:33
|
D, >On Sun, Sep 09, 2001 at 11:43:57PM +0100, Ype Kingma wrote: >| Frank, >| >| >I'm considering contributing code to NetBeans as an IDE to do Jython script >| >editing. I'm wondering what people are using to edit Jython scripts? > >I too use vim or gvim (depending on whether I want to work in the >console I'm in or a new GUI window). > >| On unix I use vi, on the mac BBEdit, >| and everywhere else any flat text editor. >| I grew up in vi and somehow never needed emacs. Vi has good >| python support under unix (syntax coloring, indentation). > >Which vi are you using? vim has been ported to the mac as well as >almost every other platform. I just can't deal with any other editor >:-). (BTW, I even have gvim built with the GTK+ gui to run in XFree >under cygwin on win2k) I use vim 5.6 (iirc) as it came with suse 6.4 powerpc. Within kde i created a simple shell script to handle window settings, but it doesn't handle mouse clicks as it might. I had to activate the syntax coloring, but that was straightforward. Have fun, Ype |
From: Brian Z. <bri...@ya...> - 2001-09-10 01:06:02
|
For me I use vim the most. But I don't think vi works well (or at all) on the handheld. Recently I also discovered SciTE http://www.scintilla.org/SciTE.html which is excellent. Quote from their web site: "Development of Scintilla started as an effort to improve the text editor in PythonWin..." It supports ASP or PHP better than vim IMHO. -Brian ----- Original Message ----- From: "Frank Cohen" <fc...@pu...> To: <jyt...@li...> Sent: Sunday, September 09, 2001 8:47 AM Subject: [Jython-users] What are Jython folks using to edit? > I'm considering contributing code to NetBeans as an IDE to do Jython script > editing. I'm wondering what people are using to edit Jython scripts? > > Information on NetBeans is at http://www.netbeans.org > Info on my project is at http://www.pushtotest.com > > -Frank > > -- > Frank Cohen, founder, PushToTest, www.pushtotest.com, phone: 408 374 7426 > Come to PushToTest for Load, a free open-source tool for performance and > scalability testing and data migration. > > > _______________________________________________ > Jython-users mailing list > Jyt...@li... > https://lists.sourceforge.net/lists/listinfo/jython-users > |