At 09:08 AM 2/8/00 -0500, you wrote:
>
>
>I would like to know if there is a way to make the lines with
>breakpoints, as well as the current line (the one that will be
>executed next) be highlighted in the jde environment.
>

Yes, use JDEbug instead of jdb.

>Also, I would like to ask for advice on how to set up a color scheme
>similar to the one seen in the jde illustrations. I would be grateful
>if somebody could send me the relevant part of their .emacs file.
>

Insert the following in your .emacs file.

(setq default-frame-alist
      '((top . 200) (left . 400)
        (width . 80) (height . 30)
        (cursor-color . "Red")
        (foreground-color . "black")
        (background-color . "ivory")
        (font . "-*-CourierNew-normal-r-*-*-13-97-*-*-c-*-*-ansi-")
        (vertical-scroll-bars . right)))

(set-face-background 'modeline "navy")
(set-face-foreground 'modeline "gold")

(setq frame-title-format
            '(multiple-frames "%b"
                  (""  invocation-name "@" system-name 
                   ": %f")))

- Paul

Reply via email to