mengelbrecht / lightline-bufferline

A lightweight plugin to display the list of buffers in the lightline vim plugin
MIT License
334 stars 25 forks source link

Triangle separator visual bug #64

Closed baudryo closed 3 years ago

baudryo commented 3 years ago

Hello i have a visual bug on bufferline :

vimbug

I use this theme : https://github.com/ayu-theme/ayu-vim

My lightline config :

 let g:lightline = {
         \ 'colorscheme': 'ayu',
         \ 'separator': { 'left': '', 'right': '' },
         \ 'subseparator': { 'left': '', 'right': '' },
         \ 'active': {
         \   'left': [ [ 'mode', 'paste' ],
         \             [ 'gitbranch', 'readonly', 'filename', 'modified' ] ]
         \ },
         \ 'component_function': {
         \   'gitbranch': 'FugitiveHead'
         \ },
         \ 'tabline': {
         \   'left': [ ['buffers'] ],
         \   'right': [ ['close'] ]
         \ },
         \ 'component_expand': {
         \   'buffers': 'lightline#bufferline#buffers'
         \ },
         \ 'component_type': {
         \   'buffers': 'tabsel'
         \ }
         \ } 
let g:lightline#bufferline#unnamed     = '[No Name]'
set showtabline=2
set guioptions-=e
mengelbrecht commented 3 years ago

Do you mean the small vertical separator before the right triangle? If this is the case, this is not an issue of lightline or this plugin. It looks like a font or terminal emulator issue.

baudryo commented 3 years ago

OK, sorry in that case.

mengelbrecht commented 3 years ago

No problem 😉