Re: Completion for exceptions

Jiri Pejchal <[email protected]> Fri, 15 Sep 2006 23:32:53 +0200
Newsgroups gmane.emacs.jdee
Message-ID <[email protected]>
And this function then speeds coding a bit too:
(I have it as an abbrev for "tn")

(defun george-jde-gen-throw-new ()
   (interactive)
   (backward-delete-char 2)
   (insert "throw new ")
   (insert (george-jde-complete-exception))
   (insert "();")
   (backward-char 2)
   )

--
Jiri Pejchal