在Emacs中进行C开发时,如何跳转到功能?

前端之家收集整理的这篇文章主要介绍了在Emacs中进行C开发时,如何跳转到功能?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Emacs做C开发.如果我有一个源文件打开多个功能,“标记”是在函数调用,例如. int n = get_number(arg);有什么办法可以“跳转”执行该功能吗?例如to int get_number(int * arg){…}

我已经在Eclipse中做了一些Java开发,并且缺少这个功能,因为我不是习惯于Emacs,而是我想学习.

解决方法

你必须创建一个标签文件.
在Unix下,您可以使用etags程序来了解C,C,Java …的语法,并创建可由Emacs使用的标签文件.

这相当于old page(2004)提供了更多的信息.

To jump to a function use M-. (that’s Meta-Period) and type the name of the function. If you simply press enter Emacs will jump to the function declaration that matches the word under the cursor.

原文链接:https://www.f2er.com/c/112950.html

猜你在找的C&C++相关文章