/telescope-cscope.nvim

picker for :Cscope

Primary LanguageLuaGNU General Public License v3.0GPL-3.0

telescope-cscope.nvim

This is an extension picker for cscope_maps.

Requirements

Select the "telescope" picker for cscope, e.g. (Lazy.nvim):

return {
	"dhananjaylatkar/cscope_maps.nvim",
	dependencies = {
		"nvim-telescope/telescope.nvim",
	},
	config = function()
		require("cscope_maps").setup({
			disable_maps = true,
			cscope = {
				picker = "telescope",
			},
		})
	end,
}

Load the extension after calling telescope.setup():

telescope.load_extension("cscope")

Use it with :Telescope cscope.