RE: New for loop template...

2001-06-08 Thread Javier Lopez
to the user's guide as well. Javier -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 6:17 PM To: Robert Mecklenburg Cc: JDE Users Subject: Re: New for loop template... Is there a generic way for users to add new templates to jde-mode without

New for loop template...

2001-06-07 Thread Robert Mecklenburg
Here is a new template I'm using which seems generally useful. It builds a for loop with an iterator and it bound to foriter: for (Iterator var = coll.iterator(); variter.hasNext();) { var.next(); } // end of for (Iterator iter = dups.iterator(); iter.hasNext();) The template

Re: New for loop template...

2001-06-07 Thread Matt_Conway
Is there a generic way for users to add new templates to jde-mode without editing jdel lisp files? i.e. some way to use customize to create a new template, add it to the abbrev table for jde-mode and save this customiozation in your .emacs file? If this can't be done, is there a way for me