本文主要是介绍emacs+cedet解析源码定义位置(三十七),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.配置cedet
一般cedet默认是安装的,查看系统安装列表:
M-x package-list-packages
搜索:cedet 一般被built in到系统1、.emacs配置
;;cedet解析代码定义位置
(semantic-mode 1)
(defun my:add-semantic-to-autocomplete()(add-to-list 'ac-sources 'ac-source-semantic))
(add-hook 'c-mode-common-hook 'my:add-semantic-to-autocomplete)(global-semanticdb-minor-mode t) ;;缓存解析过的源代码的结果,以便以后可以使用
(global-semantic-idle-scheduler-mode t) ;;emacs空闲时分析源代码
(global-semantic-idle-summary-mode t) ;;对当前位点处符号,显示分析出来的结果的摘要
(global-semantic-idle-completions-mode t);;代码补全功能,可以使用命令进行选择
(global-semantic-decoration-mode t) ;;顾名思义,使用不同的显示风格来显示分析出来的不同结果
(global-semantic-highlight-edits-mode t)
(global-semantic-show-unmatched-syntax-mode 0)
(global-semantic-stickyfunc-mode t)
(global-semantic-idle-completions-mode t)
(global-semantic-show-parser-state-mode t)
(global-semantic-show-unmatched-syntax-mode t)
(global-semantic-show-parser-state-mode t)
(global-semantic-highlight-func-mode t) ;;高亮函数或者标签的声明行
(global-semantic-stickyfunc-mode t) ;;在文本的最上层显示函数的声明信息
(global-semantic-mru-bookmark-mode t) ;;保存使用过的所有tag,mru是最多最近使用的意思;;f2补全快捷键
(global-set-key [f2] 'semantic-ia-complete-symbol-menu)2、快捷键
<1>查找被调用M-x semantic-symref-symbol
<2>代码补全M-x semantic-ia-complete-symbol-menu
<3>代码折叠M-x senator-fold-tag / senator-fold-tagsenator-fold-tag-togglesenator-previous-tag /senator-next-tag
<4>跳到定义M-x semantic-ia-fast-jump
这篇关于emacs+cedet解析源码定义位置(三十七)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!