How can I make vim tag jumps as smart as OmniCppComplete?
问题 I generate my tags (Exuberant Ctags 5.9~svn20110310) like this: ctags --c++-kinds=+p --fields=+iaS --extra=+q -L ctags.files I have roughly this class structure: class RenderObject { InterpolatedVector offset; }; class Quad : public RenderObject { }; class KeyframeWidget : public Quad { void shiftRight() { if (!offset.isInterpolating()) offset.interpolateTo(Vector(offset.x+80, 0), 0.1, 0, 0, 0); } }; (Code is from Aquaria's open source release.) If I tag jump on offset ( Ctrl - ] ), then I