在emacs编程中有以下需求

  • 从调用一个函数的地方跳转到函数的定义的地方
  • 或是反过来从函数定义的地方列出所有调用这个函数的地方

实现办法

需要安装以下软件

  • gnu global(阅读源代码的工具)官网
  • emacs的gtags插件
  • 启动emacs后,输入下面的命令,来启动gtags的功能
M-x ggtags-mode
gnu global安装
apt-get install global

emacs的gtags插件安装

M-x list-packages

找到ggtags后,鼠标点击,再点安装

使用方法

1,在存放代码的根目录执行:

$ gtags

执行后,会发现在生成了3个文件, GPATH GRTAGS GTAGS

2,启动emacs

3,启动emacs后,输入下面的命令,来启动gtags的功能

M-x ggtags-mode

每打开一个文件都输入ggtags-mode,太麻烦了,所以在.emacs文件里加一个钩子,当打开c,c++,java的源文件时,自动启动ggtags-mode

(add-hook 'c-mode-common-hook
(lambda ()
(when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
(ggtags-mode 1))))

4,使用下面的函数就可以实现,查看代码的各种需求了。

ggtags-find-tag-dwim

   Find a tag by context.

   If point is at a definition tag, find references, and vice versa.
If point is at a line that matches ``ggtags-include-pattern``, find
the include file instead. To force finding a definition tag, call it with a prefix (``C-u``). ggtags-find-tag-mouse Like ``ggtags-find-tag-dwim`` but suitable for binding to mouse
events. ggtags-find-definition Find definition tags. With ``C-u`` ask for the tag name with
completion. ggtags-find-reference Find reference tags. With ``C-u`` ask for the tag name with completion. ggtags-find-other-symbol Find tags that have no definitions. With ``C-u`` ask for the tag
name with completion. ggtags-find-tag-regexp Find definition tags matching a regexp. By default it lists all
matching tags in the project. With ``C-u`` restrict the lists to a
directory of choice. ggtags-idutils-query Use idutils to find matches. ggtags-grep Grep for lines matching a regexp. This is usually the slowest. ggtags-find-file Find a file from all the files indexed by ``gtags``. ggtags-query-replace Do a query replace in all files found in a search. Handling multiple matches
+++++++++++++++++++++++++ When a search finds multiple matches, a buffer named
``*ggtags-global*`` is popped up and ``ggtags-navigation-mode`` is
turned on to facilitate locating the right match.
``ggtags-navigation-mode`` makes a few commands in the
``*ggtags-global*`` buffer globally accessible: ``M-n`` Move to the next match. ``M-p`` Move to the previous match. ``M-}`` Move to next file. ``M-{`` Move to previous file. ``M-=`` Move to the file where navigation session starts. ``M-<`` Move to the first match. ``M->`` Move to the last match. ``C-M-s`` or ``M-s s`` Use ``isearch`` to find the match. ``RET`` Found the right match so exit navigation mode. Resumable by ``M-,``
(``tags-loop-continue``). ``M-*`` Abort and go back to the location where the search was started. Miscellaneous commands
++++++++++++++++++++++ Commands are available from the ``Ggtags`` menu in ``ggtags-mode``. ggtags-prev-mark Move to the previously (older) visited location. Unlike ``M-*``
this doesn't delete the location from the tag ring. ggtags-next-mark Move to the next (newer) visited location. ggtags-view-tag-history Pop to a buffer listing all visited locations from newest to
oldest. The buffer is a next error buffer and works with standard
commands ``next-error`` and ``previous-error``. In addition ``TAB``
and ``S-TAB`` move to next/prev entry, and ``RET`` visits the
location. ``M-n`` and ``M-p`` move to and display the next/previous
entry. ggtags-view-search-history View or re-run past searches as kept in
``ggtags-global-search-history``. ggtags-kill-file-buffers Kill all file-visiting buffers of current project. ggtags-toggle-project-read-only Toggle opening files in ``read-only`` mode. Handy if the main
purpose of source navigation is to read code. ggtags-visit-project-root Open the project root directory in ``dired``. ggtags-delete-tags Delete the GTAGS, GRTAGS, GPATH and ID files of current project. ggtags-explain-tags Explain how each file is indexed in current project. ggtags-browse-file-as-hypertext Use ``htags`` to generate HTML of the source tree. This allows
browsing the project in a browser with cross-references.

使用举例

1,从调用一个函数的地方跳转到函数的定义的地方

M-x ggtags-find-definition
对应的快捷键:M-.

2,从调用一个函数的地方跳转到函数的定义的地方后,返回到调用函数的地方

M-x ggtags-prev-mark
对应的快捷键:M-,

3,或是反过来从函数定义的地方列出所有调用这个函数的地方

M-x ggtags-find-reference
对应的快捷键:M-]

4,查看导航过的历史记录

M-x ggtags-view-tag-history
对应的快捷键:C-c M-h

用emacs 阅读 c/c++ 代码的更多相关文章

  1. [emacs] 使用ggtags浏览代码

    [emacs] 使用ggtags浏览代码 // */ // ]]>   [emacs] 使用ggtags浏览代码 Table of Contents 1 相关的连接 2 global简介 2.1 ...

  2. Emacs阅读chm文档

    .title { text-align: center; margin-bottom: .2em } .subtitle { text-align: center; font-size: medium ...

  3. Kaldi阅读并更改代码

    Common utilities base/kaldi-common.h 几乎所有Kaldi程序都会include该头文件. 该头文件include了一些其他位于base/目录的头文件,主要提供: 错 ...

  4. Week3 博客阅读感想和代码复审

    一.关于博客阅读感想 阅读了十多篇老程序员(大多在计算机相关行业工作超过10年)关于自身经历的博客,很有感触.这里一方面总结一下看博客的收获,另一方面写点自己的感受. 首先,这些博客不少涉及到了两大类 ...

  5. 改变Emacs下的注释代码方式以支持当前行(未选中情况下)的注释/反注释

    Emacs下支持多行代码的注释/反注释,命令是comment-or-uncomment-region. 我喜欢把它绑定在快捷键C-c C-/上,如下: (global-set-key [?\C-c ? ...

  6. 如何阅读luajit的代码——用vs调试篇

    为什么要看luajit的源码 作为目前最快的脚本语言之一,luajit确实是一个杰作,但相比原生lua仅仅几万行的代码而言,luajit却可以说是巨无霸.更要命的是,luajit之所以快,是因为大量使 ...

  7. perl 里面如何写出阅读友好的代码提示

    在我们使用别人写好的程序时,经常会使用-h 之类的东西查看一下简单的帮助手册或者说明信息: 对于perl 语言而言,写起来简单,经常随手一写,解决了当时的问题,但是过几天去看,你都不知道这个脚本该怎么 ...

  8. 阅读prettytable 一些代码、get、set 检查参数

    阅读代码是因为我发现官方教程里的代码在本地不能用,所以就通过”查看定义“转到了源代码里. 通过阅读源代码,查看方法内是否有教程中所说的方法名和参数名,然后再通过”查看引用“来试图了解函数的流程,如果没 ...

  9. 利用Eclipse CDT 阅读C/C++代码

    本文转自: https://xbgd.iteye.com/blog/1259544 常见阅读代码的工具有 , visual c++, visual studio + va(visual assista ...

随机推荐

  1. mysql连续聚合

    连续聚合是按时间顺序对有序数据进行聚合的操作. 在下面的救示例中将使用EmpOrders表,该表用于存放每位员工每月发生的订购数量. 运行如下 代码创建EmpOrders表并填充示例数据. CREAT ...

  2. Dubbo 入门之二 ——- 项目结构解析

    本文主要说明点 概述 背景 需求 架构 Dubbo源代码项目结构 概述 分享 Dubbo 的项目结构 ,通过本文可以大致了解到Dubbo整个项目的结构 背景 将一个项目进行拆分, 进行分布式架构. 需 ...

  3. 南大算法设计与分析课程复习笔记(3)L3 - Recursion

    一.递归方程 按照分治的思想,可以将一个递归的复杂度写成递归方程 一.解递归方程--猜然后证明 该方法又称为代入法,步骤如下: 1.猜解的形式 2.数学归纳法证明正确 例子: 我们假设有如下递归式: ...

  4. lua的table元类

    Lua中提供的元表是用于帮助Lua数据变量完成某些非预定义功能的个性化行为,如两个table的相加.假设a和b都是table,通过元表可以定义如何计算表达式a+b.当Lua试图将两个table相加时, ...

  5. Redis学习笔记(3)-XShell连接CentOSMini,并安装Redis

    使用XShell远程连接CentOSMini 点击download下载XShell5.0. 下载之后安装.配置XShell. 配置XShell前的准备 打开VM,启动CentOSMini.CentOS ...

  6. NGUI 做局部2d卷轴

    网上找到的都是做整个背景的卷轴动画,通常是改变纹理位置或者背景图片的x坐标 没有提到在UI界面里某个部分做卷轴动画,找了很久,才发现NGUI的Panel里的Clipping属性可以裁剪Panel的大小 ...

  7. python多线程-共享全局变量

    目录 多线程-共享全局变量 多线程-共享全局变量 列表当作实参传递到线程中 总结 多线程-共享全局变量问题 多线程开发可能遇到的问题 测试1 测试2 多线程-共享全局变量 多线程-共享全局变量 imp ...

  8. 字符串方法之padStart和padEnd

    ECMAScript 2017 有两个新的字符串方法:padStart和padEnd;  很有用啊啊,不用写if判断啦!开心脸 padStart在字符串开始出填充,padStart(num,‘要填充的 ...

  9. php的TS和NTS的区别

    ts(Thread-Safety)即线程安全,多线程访问时,采用了加锁机制,当一个线程访问该类的某个数据时,进行保护,其他 线程不能进行访问直到该线程读取完,其他线程才可使用.不会出现数据不一致或者数 ...

  10. JavaScript 中的相等操作符 ( 详解 [] == []、[] == ![]、{} == !{} )

    ECMAScript 中的相等操作符由两个等于号 ( == ) 表示,如果两个操作数相等,则返回 true. 相等操作符会先转换操作数(通常称为强制转型),然后比较它们的相等性. 在转换不同的数据类型 ...