vim-buffet icon indicating copy to clipboard operation
vim-buffet copied to clipboard

vim-buffet display strange.

Open iysheng opened this issue 2 years ago • 3 comments

When I open vim, i could not see new tabline style, but just see as: hlMkvD.png It's strange that I let g:buffet_always_show_tabline = 0, but i still could see the tabline and besides the style is also default style.

iysheng avatar Aug 27 '21 14:08 iysheng

Did you install a nerd font and vim-devicons plugin? And do you use neovim? There are couple of tabline plugins that are being under active development unlike vim-buffet and they have a lot of cooler features too:

  • https://github.com/romgrk/barbar.nvim
  • https://github.com/akinsho/bufferline.nvim

hewcaw avatar Aug 27 '21 17:08 hewcaw

Did you install a nerd font and vim-devicons plugin? And do you use neovim? There are couple of tabline plugins that are being under active development unlike vim-buffet and they have a lot of cooler features too:

* https://github.com/romgrk/barbar.nvim

* https://github.com/akinsho/bufferline.nvim

The issue is same as #20 , After I add line as:

let g:lightline = {
      \ 'enable': { 'tabline': 0 } ,
      \ }

I can see the tabline now, besides how could i change the color like this : I want to change the blue background and the gray backgroud, but ater I change

function! g:BuffetSetCustomColors()
  hi! BuffetCurrentBuffer cterm=NONE ctermbg=3 ctermfg=1 guifg=#cbccc6 guibg=#1f2430
endfunction

It didn't work, ctermbg=3 ctermfg=1 is invalid, but guifg=#cbccc6 guibg=#1f2430 can change the tab style.

iysheng avatar Aug 28 '21 00:08 iysheng

The issue is same as #20 , After I add line as:

lightline is a plugin that displays both the tabline and statusline hence the conflicting with buffet-vim a tabline plugin.

I want to change the blue background and the gray backgroud, but ater I change...

Blue one is BuffetTab, gray one is TablineFill https://stackoverflow.com/a/7238201/14627693.

And btw you currently using tab instead of buffer, you should learn the difference between them before continue using https://joshldavis.com/2014/04/05/vim-tab-madness-buffers-vs-tabs/

hewcaw avatar Aug 28 '21 01:08 hewcaw