c++ - Displaying the function call stack in vim -
is there way display in vim/gvim call stack of function while editing (not while running) code? using linux , c++. suppose example of code below
void foo3(){} void foo2(){} void foo1(){ foo2(){ foo3(){ } } }
i looking vim command or plugin able display list below
foo1() foo2() foo3()
i suggest have @ http://www.vim.org/scripts/script.php?script_id=2368, descent , serve purpose me.
Comments
Post a Comment