-
-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vim-gutentags E518: Unknown option: cscopeprg=gtags-cscope #1
Comments
Hi @fzhzhen1987 |
Upon carefully looking into I'll open PR soon. |
thx. i have found another way to use gtags-cscope. This issue should be closed. |
Would you mind sharing what you are using so that others can do the same. Anyway, my new module in vim-gutentags does the job. If anyone's is interested, may use my fork until it's merged in mainline. |
@fzhzhen |
Packer config to use my gutentags patch use({
"dhananjaylatkar/vim-gutentags",
after = "cscope_maps.nvim",
config = function()
vim.g.gutentags_modules = {"cscope_maps"} -- This is required. Other config is optional
vim.g.gutentags_cscope_build_inverted_index_maps = 1
vim.g.gutentags_cache_dir = vim.fn.expand("~/code/.gutentags")
vim.g.gutentags_file_list_command = "fd -e c -e h"
-- vim.g.gutentags_trace = 1
end,
})
|
Due to the removal of cscope in nvim 0.9, I have to use the cscope_maps plugin, but
I would like to use the vim-gutentags plugin and request support for vim-gutentags in the cscope_maps.
The text was updated successfully, but these errors were encountered: