Hi,

Good day to all.

I have a question about finding function definition in C++ via VIM.
The scenario:
-------------------------------------------------------
class A
{
public:
virtual void func(void);
}

class A1 : public A
{
public:
virtual void func(void);
}

class A2 : public B
{
public:
virtual void func(void);
}

int main()
{
A2 a2;
a2.func();
}
------------------------------------------------
Commonly I wanna find out a2::func(); I use g+], then it will give me a list of functions. The problem is I have the more than 1000 override functions, how do I fast locate the definition in certain class?

Thanks

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to