Title: RE: Java Debugger

Scott,
        You are probably experiencing delays related to parsing and analysis of semantic information (take a look at the senator package documentation). There are some variables you can configure in your JDE project to greatly reduce this time. In my .emacs I have:

(setq semantic-load-turn-everything-on nil)
(require 'semantic-load)
(global-semanticdb-minor-mode 1)
(add-hook 'speedbar-load-hook (lambda () (require 'semantic-sb)))
(require 'semantic-load)

Regards,
        Nascif

PS: I'm using JDE-2.2.8beta1.
PS: One of the latest versions of senator introduced a semantic information cache that also greatly improves load time.
PS: Take also a look (or browse the JDE mailing list) at the documentation of the jde-which-method. This has been another source of delay that can be easily customized.

-----Original Message-----
From: Scott Goldstein [mailto:[EMAIL PROTECTED]]
Sent: Sunday, July 01, 2001 12:09 PM
To: [EMAIL PROTECTED]
Subject: Re: Java Debugger


When I say slow down, the problem I have with JDE is not that debugging is
slow.  The problem is that just opening a Java buffer is much slower because
there's a lot more processing that JDE requires.  JDE is a great package, but
it's more than I need.

Basically, I'm looking for something like JDEbug without the rest of the
features that JDE has.

Thanks for the help.

Scott

Jason Rumney wrote:

> Scott Goldstein <[EMAIL PROTECTED]> writes:
>
> > I'm looking for a package that enhances java debugging in emacs.  I know
> > JDE has a nice debugging feature, but when I tried it, it slowed down
> > Emacs more that I wanted it to.
>
> JDE has two ways of debugging. JDEbug is more flexible, but does seem
> to slow Emacs down some. The jdb method uses the standard debugging
> facilities in Emacs (the same used to talk to gdb or dbx), I don't
> think you'll get any faster than that.
>
> --
> Jason Rumney <[EMAIL PROTECTED]>

Reply via email to