SmiteshP/nvim-gps

[Feature Request]: Allow having/changing highlights for the icons of groups

Closed this issue ยท 7 comments

I am talking something like:

	highlights = {
		disable_for_group_name = true,
		["class-name"] = { fg = "blue"},      -- Classes and class-like objects
		["function-name"] ={fg = "orange"},   -- Functions
		["method-name"] = {fg = "red"},     -- Methods (functions inside class-like objects)
	},

I know it is probably possible with gps.get_data() but it will probably be a hassle to achieve.

Hey @MordechaiHadad ! Could you try out my new plugin nvim-navic. It improves on nvim-gps and used Lsp instead of treesitter. Also added colored icons support to it.

@SmiteshP ayo this is awesome, what exactly made you move development to the new plugin?

@SmiteshP how about merging two plugins together with both methods of retrieving position available? Could have a LSP enabled by default with fallback to treesitter if no LSP functionality is available. Or is it too much of a maintenance burden?

@gegoune sounds like a pretty cool idea!

@SmiteshP what do you think of this?

@SmiteshP how about merging two plugins together with both methods of retrieving position available? Could have a LSP enabled by default with fallback to treesitter if no LSP functionality is available. Or is it too much of a maintenance burden?

Hey @MordechaiHadad @gegoune
I answered this question in SmiteshP/nvim-navic#6

@SmiteshP thank you for your work!