How do I use ctags functionality in vim with cscope installed?
I stumbled across your question while having the same problem and I've found a solution.
I assume that, you as well as I installed cscope_maps.vim in your .vim/ directory. When you inspect the file exactly it has a flag "cscopetag" that basically combines ctags and cscope. Removing this flag will disable Control-] binding for cscope and only ctags remains.
Use both cscope and ctags for Control-],
:ta
, andvim -t
.Comment out the flag like this:
" set cscopetag
.