neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit b67fcd0488746b079a3b721ae4800af94cd126e1
parent d8bc08db7fd8d0efbf2e9ebf39fecb6f732f84e8
Author: Jared Baur <45740526+jmbaur@users.noreply.github.com>
Date:   Tue,  7 Jan 2025 04:21:15 -0800

fix(highlight): make `TablineSel` more noticeable #31896

The default `TablineSel` highlighting makes it subjectively difficult to
differentiate the selected tab from unselected ones.
Diffstat:
Msrc/nvim/highlight_group.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nvim/highlight_group.c b/src/nvim/highlight_group.c @@ -150,7 +150,6 @@ static const char *highlight_init_both[] = { "PmenuMatchSel gui=bold cterm=bold", "PmenuSel gui=reverse cterm=reverse,underline blend=0", "RedrawDebugNormal gui=reverse cterm=reverse", - "TabLineSel gui=bold cterm=bold", "TermCursor gui=reverse cterm=reverse", "Underlined gui=underline cterm=underline", "lCursor guifg=bg guibg=fg", @@ -181,6 +180,7 @@ static const char *highlight_init_both[] = { "default link StatusLineTermNC StatusLineNC", "default link TabLine StatusLineNC", "default link TabLineFill TabLine", + "default link TabLineSel Normal", "default link VertSplit WinSeparator", "default link VisualNOS Visual", "default link Whitespace NonText",