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

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -