ludovicchabant / vim-gutentags

A Vim plugin that manages your tag files
https://bolt80.com/gutentags/
MIT License
2.3k stars 175 forks source link

make gtags_cscope module available for nvim-0.9.0 #351

Open skywind3000 opened 1 year ago

skywind3000 commented 1 year ago

cscope interface has been removed in neovim-0.9.0 : https://github.com/neovim/neovim/pull/20545

Currently, gtags-cscope can't work with the latest neovim, this also makes gtags_cscope module unavailable.

I am the author of gutentags_plus, recently I made a compatible layer in my plugin to simulate +cscope functionality in nvim-0.9.0

But it requires gutentags to continue taking care of the gtags database generation,

So, this PR will make gtags_cscope continue generating gtags database without actually calling any non-existing cscope interface in neovim-0.9.0

Please consider to merge.