我最近决定尝试使用emacs进行java开发,所以这是我第一次使用emacs。我没有在emacs启动时收到任何错误,但我认为jde没有正确安装,因为在查看java文件时我没有看到“jde”菜单项。关于如何进一步排除故障的任何建议?
我将cedet,jde和elib下载并提取到以下目录结构中:
~/.emacs.d/site/cedet/latest
~/.emacs.d/site/jde/latest
~/.emacs.d/stie/elib/latest
在每种情况下,'latest'是版本化目录的符号链接,例如:
cd ~/.emacs.d/site/cedet
ls -al
drwxr-xr-x@ 17 dparoulek staff 578 Dec 4 12:17 cedet-1.0pre6
lrwxr-xr-x 1 dparoulek staff 14 Dec 4 21:41 latest -> cedet-1.0pre6/
这是我的.emacs文件:
; JDE - Java Development Environment
;; Set the debug option to enable a backtrace when a
;; problem occurs.
(setq debug-on-error t)
;; Update the Emacs load-path to include the path to
;; the JDE and its require packages. This code assumes
;; that you have installed the packages in the emacs/site
;; subdirectory of your home directory.
(add-to-list 'load-path (expand-file-name "~/.emacs.d/site/jde/latest/lisp"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/site/cedet/latest/common"))
(load-file (expand-file-name "~/.emacs.d/site/cedet/latest/common/cedet.el"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/site/elib/latest"))
(require 'jde)
答案 0 :(得分:0)
我发现emacs将启动日志消息写入 Messages 缓冲区。一旦我发现了,我意识到当它试图加载我的.emacs文件中定义的一些内容时会出现一些问题。
我能够成功使用cedet和ecb,但在尝试加载jde时仍然会出现lisp错误。