RE: Version 1.3 of jde-ant.el

2001-06-19 Thread Molitor, Stephen
Cool! Would it be possible to have tab completion available when selecting the build target (when running jde-ant-build, when jde-ant-read-target is on)? The way find-file works? Steve Molitor [EMAIL PROTECTED] -Original Message- From: Jason Stell [mailto:[EMAIL PROTECTED]] Sent:

Re: Version 1.3 of jde-ant.el

2001-06-19 Thread Jason Stell
Hmmm... that would indeed be nice, but, not being an elisp pro, I'm not quite sure about if/how this could be done. You'd have to parse the output of jde-ant-projecthelp and read the available targets, then integrate this into the emacs expand facility Anyone have any ideas/thoughts on this?

RE: Version 1.3 of jde-ant.el

2001-06-19 Thread Molitor, Stephen
: Tuesday, June 19, 2001 9:08 AM To: Molitor, Stephen Cc: [EMAIL PROTECTED] Subject: Re: Version 1.3 of jde-ant.el Hmmm... that would indeed be nice, but, not being an elisp pro, I'm not quite sure about if/how this could be done. You'd have to parse the output of jde-ant-projecthelp and read

Re: Version 1.3 of jde-ant.el

2001-06-19 Thread Knut Wannheden
Molitor, Stephen [EMAIL PROTECTED] writes: Cool! Would it be possible to have tab completion available when selecting the build target (when running jde-ant-build, when jde-ant-read-target is on)? The way find-file works? [...] For this purpose one could also use regexps or sgml-mode

RE: Version 1.3 of jde-ant.el

2001-06-19 Thread Nick Sieger
Title: RE: Version 1.3 of jde-ant.el Perhaps ant -projecthelp could be spawned inside of the beanshell. This would avoid the JVM startup costs. For that matter, maybe ant could always be spawned in the beanshell. The only difficulty I see would be to capture its output properly and display

Re: Version 1.3 of jde-ant.el

2001-06-19 Thread Jason Stell
I concur, but I don't think we want to couple jde-ant with the Ant XML schema. I would rather delegate to the Ant program. I thought about the possibilty of using beanshell to invoke the Ant program main. This would relieve the cost of starting up an additional VM. However, Ant comes with shell