gpt4 book ai didi

emacs - EIEIO (bzr, cedet 1.1) 未在 emacs 中加载,版本 1.3 已加载

转载 作者:行者123 更新时间:2023-12-02 00:20:21 25 4
gpt4 key购买 nike

我下载并编译了CEDET的开发分支,并按照网页上的指南加载,但是当我启动Emacs时,我得到了

error: EIEIO Version 1.3 already loaded; load CEDET at the beginning of your init file to avoid this.

这实际上是 ~/.emacs 中我的 .emacs 的第一行:

(load-file "~/.emacs.d/cedet/common/cedet.el")
(semantic-load-enable-excessive-code-helpers)

(global-ede-mode t)

(require 'semantic-ia)
(require 'semantic-gcc)
(require 'semanticdb)

我真的看不出有什么问题。我也是 Emacs 新手 :P 感谢您的帮助。干杯

最佳答案

IMO 错误是 self 描述的。将您的代码段放在 .emacs

的开头

实际上加载开发版本略有不同。这是我的 .emacs 文件的相关部分。 (相应地更改 cedet 的路径)

(unless (featurep 'cedet)
(when (file-directory-p "~/.emacs.d/el-get/cedet")
(progn
(add-to-list 'load-path "~/.emacs.d/el-get/cedet")
(load-file "~/.emacs.d/el-get/cedet/cedet-devel-load.el"))))

;;; ede
(setq semantic-default-submodes
'(;; cache(?)
global-semanticdb-minor-mode

global-semantic-highlight-edits-mode
global-semantic-idle-local-symbol-highlight-mode
;; global-cedet-m3-minor-mode

;; code helpers
global-semantic-idle-scheduler-mode
global-semantic-idle-summary-mode
global-semantic-idle-completions-mode

;; eye candy
global-semantic-decoration-mode
global-semantic-highlight-func-mode
global-semantic-highlight-edits-mode
global-semantic-stickyfunc-mode

;; debugging semantic itself
;;global-semantic-show-parser-state-mode 1 ;; show the parsing state in the mode line
;;global-semantic-show-unmatched-syntax-mode 1
))

(global-ede-mode 1)

关于emacs - EIEIO (bzr, cedet 1.1) 未在 emacs 中加载,版本 1.3 已加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11293128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com