ap / vim-buftabline

Forget Vim tabs – now you can have buffer tabs
http://www.vim.org/scripts/script.php?script_id=5057
MIT License
782 stars 75 forks source link

tab highlight color override bug — coloring over underline #69

Closed simonalford42 closed 5 years ago

simonalford42 commented 5 years ago

I wanted to change the tab colors so that the current tab is highlighted brighter: highlight BufTabLineCurrent cterm=NONE ctermbg=15 ctermfg=8 gui=NONE guibg=#ffffff guifg=#d70000

doing so made the underline of the current tab appear to be colored over:

tag_view

Obviously not the most important bug in the world but I thought I would bring it to your attention.

ap commented 5 years ago

Hi. I’m… not sure what I’m looking for in that screenshot?

simonalford42 commented 5 years ago

Here's a screenshot of what it originally looked like:

vimrc, the current tab, is normally underlined. When I change the current tab highlight color, the underline goes away.

Screen Shot 2019-06-14 at 8 14 25 AM

ap commented 5 years ago

But you specified gui=NONE instead of underline, so it’s doing exactly what you told it to… are you saying it should somehow put an underline there in spite of your configuration to the contrary…?

simonalford42 commented 5 years ago

Ah I see thank you. Had copied the code from SO and didn't really know what it meant.