Hello,
I've been using JDE as a novice happily for a few months now. Only one
thing still bothers me -- not at first, but after a file has been open for a
while and I've been editing it, it starts periodically repositioning the
upper- and lower- borders of the screen so that the cursor in the middle,
just as though I had hit a C-L, but I've done nothing at all -- just moved
the cursor and let it sit there for a few seconds. Has anyone else seen
this problem, and if so, is there a resolution? I'm using JDE2.2.9beta9
with NTEmacs 20.7.1, launched with "-fg green -bg black" flags. I've seen
on this list mention of a beta9.1, but it doesn't seem to be on the website,
so if it is available only through CVS, I'd prefer only to upgrade if this
issue was one addressed in beta9.1. See below for versions of requisite
packages. Any hints on which package I might try upgrading to fix this
would also be much appreciated.
Regards,
Tim Heilman
.emacs:
(setq debug-on-error t)
(add-to-list 'load-path (expand-file-name
"~/emacs/site/jde-2.2.9beta9/lisp"))
(add-to-list 'load-path (expand-file-name
"~/emacs/site/semantic-1.4beta13"))
(add-to-list 'load-path (expand-file-name
"~/emacs/site/speedbar-0.14beta2"))
(add-to-list 'load-path (expand-file-name "~/emacs/site/eieio-0.17beta3"))
(add-to-list 'load-path (expand-file-name "~/emacs/site/elib-1.0"))
;; If you want Emacs to defer loading the JDE until you open a
;; Java file, edit the following line
(setq defer-loading-jde nil)
;; to read:
;;
;; (setq defer-loading-jde t)
;;
(if defer-loading-jde
(progn
(autoload 'jde-mode "jde" "JDE mode." t)
(setq auto-mode-alist
(append
'(("\\.java\\'" . jde-mode))
auto-mode-alist)))
(require 'jde))
prj.el:
(jde-project-file-version "1.0")
(jde-set-variables
'(jde-project-name "default")
'(jde-make-working-directory "$BB_HOME/src/")
'(jde-ant-enable-find nil)
'(jde-ant-args "-emacs compile_only")
'(jde-global-classpath (quote ("s:\\Shared\\Services\\src")))
'(jde-run-working-directory "$BB_SHARED_DIR/scripts")
'(jde-run-executable-args (quote ("weblogic")))
'(jde-db-source-directories (quote ("$BB_SHARED_DIR/src"
"c:/jdk1.3.1/src.jar" "$BB_HOME/src"
"$BB_HOME/src/Web/frontend/WEB-INF/_tmp_war_myserver_myserver_frontend/jsp_s
ervlet")))
'(jde-build-function (quote (jde-ant-build)))
'(jde-debugger (quote ("JDEbug")))
'(jde-run-executable "./startserver.bat")
'(jde-ant-buildfile "$BB_HOME/src/build.xml"))