luukvbaal/statuscol.nvim

Neotest signs

Closed this issue · 1 comments

Hi. I want to add neotest signs to my statuscol config similar to what i did with diagnostics. But i don't understand how i can do it. Can i get some help there, please?

My config looks like that:

	{
		"luukvbaal/statuscol.nvim",
		priority = 100,
		config = function()
			local builtin = require("statuscol.builtin")

			require("statuscol").setup({
				relculright = true,
				segments = {
					{
						sign = {
							namespace = { "gitsigns" },
							name = { ".*" },
							maxwidth = 1,
							colwidth = 1,
							auto = false,
						},
						click = "v:lua.ScSa",
						condition = {
							function(args)
								return args.sclnu
							end,
						},
					},
					{
						sign = {
							namespace = { "diagnostic" },
							maxwidth = 2,
							colwidth = 1,
							auto = false,
							fillchar = " ",
						},
						click = "v:lua.ScSa",
						condition = {
							function(args)
								return args.sclnu
							end,
						},
					},
					{
						text = { builtin.lnumfunc, " " },
						click = "v:lua.ScLa",
					},
				},
			})
		end,
	},

You would have to figure out the source of those signs. It looks like neotest still uses the legacy sign api and defines signs named neotest_.... So you would add a segment that looks for those signs:

sign = { name = {"neotest_"}, ... `}