我想在C ++源代码中获得给定类可用的完整功能列表。
我正在使用以下配置的CEDET。
;; CEDET config
(semantic-mode 1)
;; Semantic
(global-semantic-idle-completions-mode t)
(global-semantic-decoration-mode t)
(global-semantic-highlight-func-mode t)
(global-semantic-show-unmatched-syntax-mode t)
;; CC-mode and C-mode hook
(defun my-ac-hook ()
(add-to-list 'ac-sources 'ac-source-semantic)
(local-set-key (kbd "RET") 'newline-and-indent)
(linum-mode t))
(add-hook 'c-mode-common-hook 'my-ac-hook)
(add-hook 'c++-mode-hook 'my-ac-hook)
但我没有按预期获得列表。我在配置中缺少什么?
感谢。