how do you make ctags account for class in c++? when i jump to a tag of a function i get to the same name of the function but in a wrong class.
B b; b.init();
and there are
A::init() {} B::init() {}
i put the cursor on init of b.init() and the jump is to A::init() {} instead of B::init() {}.
Note, i didn't use a and b in my code. so this might not work if u run ctags. if it's not a common problem i ca post the actual code.