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

NeoVim external GUI tabline needs to be disabled separately

Open aj3423 opened this issue 6 years ago • 4 comments

I'm using the latest nvim 0.4 + windows10(64bit). This is the result when opened two buffers with:

:badd aaa
:badd bbb

image

My config in vimrc:

Plug 'ap/vim-buftabline'
let g:buftabline_show=1
let g:buftabline_numbers=2
let g:buftabline_indicators='on'

Why there is a tabline, not buffer line ? How to make it same as in the demo screenshot? Thanks.

aj3423 avatar Feb 16 '19 08:02 aj3423

Found the solution:

:Guitabline 0

aj3423 avatar Feb 17 '19 16:02 aj3423

Thanks for tracking that down! I’m not a NeoVim user so it could have taken me a while. I’m reopening this because the plugin ought to take care of this automatically, much as it already does for GVim’s GUI tabs.

Relevant links: https://github.com/equalsraf/neovim-gui-shim/blob/master/plugin/nvim_gui_shim.vim https://github.com/equalsraf/neovim-gui-shim/blob/master/doc/nvim_gui_shim.txt

ap avatar Feb 17 '19 16:02 ap

Found the solution:

:Guitabline 0

Thanks for taking the time out to figure this out.

However, it didn't work for me. I get an error saying that it is not an editor command.

bthodla avatar Oct 03 '19 14:10 bthodla

@bthodla It is GuiTabline 0 (note the uppercase T) in ginit.vim (same directory as init.vim)

oxysoft avatar Dec 24 '19 19:12 oxysoft