From: John M. <mcg...@re...> - 2001-09-09 20:51:31
|
The Emacs python-mode package is great. It's included with XEmacs, and= perhaps others, and can be downloaded from= http://python.org/emacs/python-mode/. It features syntax coloring,= auto-indent, and other stuff, and it will start a Python session in its= own buffer within emacs. It should be possible to make Jython your default= Python for this, though I don't, since I use both Python and Jython, and I= prefer to leave Python as the default for the Python shell, and run Jython= in a standard shell buffer. Either way, emacs is a cool environment to run= python in because (among other reasons) you can save your session for= future reference as a text file. Re: NetBeans: I've tried using it for Java coding, and it's fine, but I= suppose I always use XEmacs for real stuff because I'm familiar with it= and it has great features and is fully customizable, and it requires no= mouse use if you don't want to. I guess JED (an emacsish editor) also has a python mode, from what I've= read. It's supposed to be simialr to the Emacs python-mode. --JOHN |
From: Garcia, M. <mg...@Bu...> - 2001-09-10 16:28:17
|
I'm using Emacs with the Python-Major mode which provide syntax highlighting, compilation, along with interpreter interaction. -----Original Message----- From: Carlos Quiroz To: jyt...@li... Sent: 9/9/01 12:08 PM Subject: Re: [Jython-users] What are Jython folks using to edit? 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 _______________________________________________ Jython-users mailing list Jyt...@li... https://lists.sourceforge.net/lists/listinfo/jython-users |
From: Paul G. <pau...@so...> - 2001-09-11 07:37:07
|
I have used the Python mode in XEmacs for years, and I've been very happy with it. However, after seeing Carlos' original posting re: jython for jEdit, I had a look and was *very* impressed. In fact I now use jEdit as my primary development tool. I am doing more Java than [jp]ython, but unlike many Java IDE's, jEdit has a general purpose text editor at it's core, and it supports many programming languages. It is also very easy to extend - using languages that I know (as opposed to elisp, which I don't ;-) -Paul -----Original Message----- From: Carlos Quiroz To: jyt...@li... <mailto:jyt...@li...> Sent: 9/9/01 12:08 PM Subject: Re: [Jython-users] What are Jython folks using to edit? 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-11 17:24:12
|
Frank, >Thanks for the tips. When you use an editor and Jython reports and error is >there anything you're using now that brings your editor back to the link >originating the error? I considered writing a python script for that (reading the traceback and using that to invoke vi on the correct file and line), as i did for javac. I never got to do it, though. The problem is that python is not a compiler that can be relatively sure where the error occurred. Jumping into a file might be limited to syntax errors, though. But with the syntax support in the editor there are relatively few syntax errors left. Good luck, Ype >-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: Ype Kingma <yk...@xs...> >> Date: Sun, 9 Sep 2001 23:43:57 +0100 >> To: jyt...@li... >> Subject: Re: [Jython-users] What are Jython folks using to edit? >> >> 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 >> >> _______________________________________________ >> Jython-users mailing list > > Jyt...@li... > > https://lists.sourceforge.net/lists/listinfo/jython-users |
From: Romain G. <rom...@je...> - 2001-09-11 17:31:07
|
My own text editor, Jext, integrates Python syntax colorizing, Python class browser, and an integrated release of Jython. Any error generated while executing a Jython source code (F5) is reported in a log window and a double-click on it brings you back to the source code line. www.jext.org Romain "Java Swinguer !" Guy rom...@je... www.jext.org "Now, don't you worry. The saucers are up there. The graveyard is out there. But I'll be locked up safely in there." - Paula Trent, Plan 9 From Outer Space ----- Original Message ----- From: "Ype Kingma" <yk...@xs...> To: <jyt...@li...> Sent: Tuesday, September 11, 2001 8:18 PM Subject: Re: [Jython-users] What are Jython folks using to edit? > Frank, > > >Thanks for the tips. When you use an editor and Jython reports and error is > >there anything you're using now that brings your editor back to the link > >originating the error? > > I considered writing a python script for that (reading the traceback > and using that to invoke vi on the correct file and line), as i did > for javac. I never got to do it, though. The problem is that python is > not a compiler that can be relatively sure where the error occurred. > > Jumping into a file might be limited to syntax errors, though. > But with the syntax support in the editor there are relatively few > syntax errors left. > > Good luck, > Ype > > >-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: Ype Kingma <yk...@xs...> > >> Date: Sun, 9 Sep 2001 23:43:57 +0100 > >> To: jyt...@li... > >> Subject: Re: [Jython-users] What are Jython folks using to edit? > >> > >> 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 > >> > >> _______________________________________________ > >> Jython-users mailing list > > > Jyt...@li... > > > https://lists.sourceforge.net/lists/listinfo/jython-users > > > _______________________________________________ > Jython-users mailing list > Jyt...@li... > https://lists.sourceforge.net/lists/listinfo/jython-users |
From: Frank C. <fc...@pu...> - 2001-09-12 04:44:16
|
Sounds great. I'll check it out. To get back to the correct source line are you parsing the standard-output for the error message? -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: "Romain Guy" <rom...@je...> > Reply-To: "Romain Guy" <rom...@je...> > Date: Tue, 11 Sep 2001 19:35:30 +0200 > To: <jyt...@li...> > Subject: Re: [Jython-users] What are Jython folks using to edit? > > My own text editor, Jext, integrates Python syntax colorizing, Python > class browser, and an integrated release of Jython. Any error generated > while executing a Jython source code (F5) is reported in a log window and a > double-click on it brings you back to the source code line. > > www.jext.org > > Romain "Java Swinguer !" Guy > rom...@je... > www.jext.org > > "Now, don't you worry. The saucers are up there. The graveyard is out there. > But I'll be locked up safely in there." > - Paula Trent, Plan 9 From Outer Space > ----- Original Message ----- > From: "Ype Kingma" <yk...@xs...> > To: <jyt...@li...> > Sent: Tuesday, September 11, 2001 8:18 PM > Subject: Re: [Jython-users] What are Jython folks using to edit? > > >> Frank, >> >>> Thanks for the tips. When you use an editor and Jython reports and error > is >>> there anything you're using now that brings your editor back to the link >>> originating the error? >> >> I considered writing a python script for that (reading the traceback >> and using that to invoke vi on the correct file and line), as i did >> for javac. I never got to do it, though. The problem is that python is >> not a compiler that can be relatively sure where the error occurred. >> >> Jumping into a file might be limited to syntax errors, though. >> But with the syntax support in the editor there are relatively few >> syntax errors left. >> >> Good luck, >> Ype >> >>> -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: Ype Kingma <yk...@xs...> >>>> Date: Sun, 9 Sep 2001 23:43:57 +0100 >>>> To: jyt...@li... >>>> Subject: Re: [Jython-users] What are Jython folks using to edit? >>>> >>>> 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 >>>> >>>> _______________________________________________ >>>> Jython-users mailing list >>>> Jyt...@li... >>>> https://lists.sourceforge.net/lists/listinfo/jython-users >> >> >> _______________________________________________ >> Jython-users mailing list >> Jyt...@li... >> https://lists.sourceforge.net/lists/listinfo/jython-users > > > _______________________________________________ > Jython-users mailing list > Jyt...@li... > https://lists.sourceforge.net/lists/listinfo/jython-users |