vim-rtags icon indicating copy to clipboard operation
vim-rtags copied to clipboard

Vim bindings for rtags, llvm/clang based c++ code indexer.

Results 35 vim-rtags issues
Sort by recently updated
recently updated
newest added

Seems like this was a previous issue that was solved. Unclear why I'm seeing it again. I'm trying to get this set up for the first time. Thanks for the...

I have rtags and vim-rtags installed on my Ubuntu 18.10. When I issue a rtags mapping in vim, like `rj`, called function appears immediately in vim command line like this...

It appears that the vim-rtags unsaved-file feature does not work any more due to upstream changes in rtags. 1) it appears the --wait is flag is necessary for the reindexing...

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?

It will be awesome to support call graph, make reading code easier.

This line in the CXX_11_EXTENDED_REGEX_TEST throws an exception `std::regex rx(\"^(.*):([0-9]+):([0-9]+):?-:?([0-9]+):([0-9]+):?(@[A-Za-z,]+)?\", std::regex_constants::extended);` This causes the test program to return -1, which causes the cmake to fail. If I change the argument...

I find I have to re-index the file after every change, otherwise the jumps don't work. Would be great if the plugin had an option to do this for you....

custom mappings prefix

Suppose I have the following code: ```cpp class Foo { void bar() { int qux = 7; } }; ``` If the cursor is on the digit `7`, I'd like...