everyone
Below is my .vim/plugin,
"xxxx@xxxx-OptiPlex-7020:~/.vim/plugin$ ls
cscope_maps.vim ctags.vim quickr-cscope.vim srcexpl.vim
"
quickr-cscope.vim depends on cscope;
srcexpl.vim depends on ctags
so I use cscope -R and turn on quickr-cscope, it can successfully display all references of one variable and I can easily navigate, which is good.
like "Search results are shown in quickfix window, which is way more flexible for navigation compared to Cscope's fixed list"
Then I turn on srcexpl, it generates a "tags" file under current directory. this can work as expected and show the declaration of keyword under cursor.
However then I want to use quickr-cscope again, now the quickfix windown display all reference files in the quickfix window. but all files are empty when you go inside...strong text
After I deleted generated "tags" file, quickr-cscope can work again. It is obvious "tags" file disrupts "quickr-cscope" function....
can anyone help here?