当我使用函数“eassist-list-methods”时,我遇到了这个问题,
eassist-function-tags: Invalid function: semantic-find-tags-by-class
你可以帮我解决一下吗?
我使用最新的cedet-devel版本
emacs版本是:24.2
答案 0 :(得分:1)
http://sourceforge.net/p/cedet/mailman/message/30564469/
我坚持:(需要'语义/查找),应该解决这些问题。如果出现任何其他未知函数,只需在某个地方使用lisp / cedet / package中的grep(假设任何以语义开头的内容 - 例如在语义包中),然后将所述require添加到eassist中。
<pre>
diff -Naur eassist.el.orig eassist.el
--- eassist.el.orig 2015-08-11 11:03:58.544695143 +0800
+++ eassist.el 2015-08-11 10:59:17.456679391 +0800
@@ -103,6 +103,7 @@
;;; Code:
(require 'semantic)
+(require 'semantic/find)
;; ================================== My STRING utils ========================
(defun eassist-string-without-last (string n)
</pre>
函数semantic-find-tags-by-class是一个宏,所以你会这样做 需要使用我上次提供的补丁重新编译eassist。那 应该最终解决问题。
你可以通过打开eassist.el并执行
来做到这一点M-x字节编译文件RET
然后:
M-x加载库RET eassist RET
你可以试试这个: https://github.com/liugang/taglist
taglist插件是Emacs的源代码浏览器插件,提供了编程语言文件结构的概述