gpt4 book ai didi

vim - 在vim中通过cscope显示多层函数关系

转载 作者:行者123 更新时间:2023-12-02 20:59:21 29 4
gpt4 key购买 nike

我知道 Source Insight 可以在一个窗口中显示多层函数关系。

例如,我们有如下四个函数

void example_A()
{
example_B();
}

void example_B()
{
example_C();
}

void example_C()
{
example_D();
}

void example_D();
{
return 5;
}

当我在 Source Insight 中单击 example_D() 时,Source Insight 显示 example_C() 正在调用该函数。

此外,当我单击 example_C() 时,我看到 example_B() 正在调用该函数。

关系是这样的:

Example_D()
|
-->Example_C()
|
-->Example_B()
|
-->Example_A()

我可以在 vim 中使用 cscope 在一个窗口中查看关系吗?

谢谢。

最佳答案

关于vim - 在vim中通过cscope显示多层函数关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35226193/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com