【发布时间】:2015-07-02 08:23:11
【问题描述】:
我有一些很长的 C 和 C++ 头文件,其中包含很多嵌套的 #if 语句。
#if FOO
...
#elif BLAR
#ifndef WIDGET
#endif
#else
...
#end
有没有办法在 Eclipse 中的匹配语句之间跳转?我发现了一个类似的question that says it is possible in Visual Studio,它表明应该使用 CTRL + ] 组合键,但这似乎只适用于匹配的大括号。
【问题讨论】: