I am not sure if this question has already been asked, but I tried my best to search for a solution.
This is the problem I am facing:
I am using both ctags and cscope for browsing c++ code. I want to use ctags listed tags inside vim and cscope outside vim (to search for symbols and text). If I search for a symbol in cscope and open the file (in vim), the other vim sessions start using tags from cscope's connection (and not of ctags' listing). I don't like cscope's listed tags because they are much more than what ctags list for me. Moreover, I feel what ctags list are more relevant to me. Currently, I terminate the cscope connection and that works. But I will have to do it every time a new vim session is opened.
How to I avoid cscope connection being used to list tags in the existing vim sessions ?