Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我会尽量具体。我正在为特定处理器编写 C 代码。在我的函数定义中,我需要添加字符串:
部分(“sec_name”)
所以我的函数具有以下结构:
section("sec_name") int function_name(){ .... }
这会导致 etags 无法将它们识别为函数,并且它们不包含在 TAGS 表中。是否可以告诉 etags 忽略字符串
并将以下字符标记为函数?谢谢你的任何答案。
在 etags 的手册页中描述了该选项--regex=regexp,您可以在其中定义自己的正则表达式,以使 etags 基于非标准声明格式查找标签。
--regex=regexp
也有例子。