我想折叠代码,我知道CEDET可以帮助我做到这一点。但语义标签折叠模式不是Emacs 24.3.1附带的CEDET的一部分。那我该怎么办?
答案 0 :(得分:0)
我从这里安装http://cedet.sourceforge.net/git-repo.shtml
并将这些行添加到.emacs
:
(setq cedet-root-path (file-name-as-directory "~/projects/cedet/"))
(load-file (concat cedet-root-path "cedet-devel-load.el"))
(add-to-list 'load-path (concat cedet-root-path "contrib"))
(add-to-list 'Info-directory-list "~/projects/cedet/doc/info")
我的emacs停止使用cedet
那部分内容。注意这只是切换外部cedet,正确配置需要更多elisp
代码,
但这与问题无关。