vim-rtags
vim-rtags copied to clipboard
Is there a way to list all symbols in the currently open file?
Let's say I have a .cpp file open, is there a way to get a list of all, for example, functions in the file?
Currently I don't see how to accomplish this with rtags. The closest we can get to is by doing:
rc -S <class_name_defined in your current file>
optionally combining with --kind-filter FunctionDecl.
I don't know how to tell rtags to return results for current file only.
It seems that filtering can be done with --path-filter :)
@YaLTeR you could try https://github.com/majutsushi/tagbar, it's pretty nice
That one's for ctags though.
If someone make rtags version of tagbar, is it beneficial?