Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Issue: Statusline doesn't react to blocklist #89

@nxtkofi

Description

@nxtkofi

Hi! I reallly love Your plugin, it solves most of my issues with windows dimming.
However I encountered an issue where the plugin lowkey doesn't react to excluding a highlight group it in config.
What I want to achieve is the following: I want the bottom status line (the one with a file name [in this case it's README.md]) to stay transparent:
Image
However Your plugin makes it somewhat dark(ish):
Image

How can I change it?
I tried this config:

return {
	"tadaa/vimade",
	opts = {
		recipe = { "default", { animate = true } },
		fadelevel = 0.65,
		tint = {
			fg = { rgb = { 120, 120, 120 }, intensity = 1 }, -- all text will be gray
		},
		blocklist = {
			default = {
				highlights = {
					-- Prevent ActiveTabs from highlighting.
					"TabLineSel",
					-- Exact highlight names are supported:
					"WinSeparator",
					-- Lua patterns are supported, just put the text between / symbols:
					"/^SignColumn.*/",
					"/^StatusLine.*/",
					"LuaLine",
					"/^LuaLine.*/",
				},
				buf_opts = { buftype = { "prompt" } },
				-- buf_name = {'name1','name2', name3'},
				-- buf_vars = { variable = {'match1', 'match2'} },
				-- win_opts = { option = {'match1', 'match2' } },
				-- win_vars = { variable = {'match1', 'match2'} },
				-- win_type = {'name1','name2', name3'},
				-- win_config = { variable = {'match1', 'match2'} },
			},
		},
	},
}

But the line persists dark. Any ideas what can I do?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions