chunkhang / vim-buffet

IDE-like Vim tabline

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vim-buffet

Note: this plugin has been renamed from vim-workspace and thus has also different prefix for the configuration and commands. Please revisit the README and use the new names of the configuration parameters, highlight groups and commands. Sorry for inconvenience.

If you are new to the Vim world, then welcome, and start by learning Vim's notions of buffers, windows and tabpages.

But if you are an experienced Vim user, you might have got tired of bn/bp/ls/Ctrl-^.

vim-buffet brings the IDE-like tabs into Vim, for easy navigation, and a nice, customizable look. It takes your buffers and tabs, and shows them combined in the tabline. With this you always have your list of buffers visible, at the same time not losing visibility into tabs. Moreover, vim-buffet provides handy commands to boost navigation as well as a list of options to customize how the tabline appears.

Introduction

vim-buffet Screenshot

Take a look at the screenshot. The blue cuties are the tabpages. The tabpage that has the buffers list coming next, is the current tabpage. The gray items with names are the hidden/inactive buffers, and obviously, the green one is the current buffer. The brighter items on both ends with the little arrows and numbers are the truncation indicators. If all the buffers do not fit the screen, vim-buffet truncates the tabline, and shows the number of truncated buffers on both ends.

Note: the instance of Vim in the screenshot is configured to use powerline symbols and dev-icons. The default interface is only text and will work without requiring any patched fonts. The default interface looks like in the screenshot below.

vim-buffet Screenshot

Installation

Use your favourite plugin manager to install vim-buffet. If you do not have any preference or have not decided yet, I would recommend Plug.

Plug 'bagrat/vim-buffet'

After installation, vim-buffet is enabled by default, so whenever you restart Vim, you will see the new tabline!

Commands

Apart from listing the buffers in the tabline, vim-buffet also provides some handy commands to manipulate the buffers:

  • Bw[!] - wipe the current buffer without closing the window. If is has unsaved changes, an error will be shown, and the buffer will stay open. To ignore any changes and forcibly wipe the buffer, use Bw!.
  • Bonly[!] - wipe all the buffers but the current one. If there are any buffers in the list that has unsaved changes, those will not be wiped. To ignore any changes and forcibly wipe all buffers except the current one, use Bonly!.

Configuration

There are some configuration options that make it possible to customize how the tabline works and looks like.

Options

The following is the list of available options, that should be set in your Vimrc file, using let <optiona-name> = <option-value>:

  • g:buffet_powerline_separators - if set to 1, use powerline separators in between buffers and tabs in the tabline (see the first screenshot).

    Default:

    let g:buffet_powerline_separators = 0
    
  • g:buffet_separator - the character to be used for separating items in the tabline.

    Default:

    let g:buffet_separator = ""
    
  • g:buffet_use_devicons - if set to 1 and vim-devicons plugin is installed, show file type icons for each buffer in the tabline. If the vim-devicons plugin is not present, the option will automatically default to 0.

    Default:

    let g:buffet_use_devicons = 1
    
  • g:buffet_tab_icon - the character to be used as an icon for the tab items in the tabline.

    Default:

    let g:buffet_tab_icon = "#"
    
  • g:buffet_new_buffer_name - the character to be shown as the name of a new buffer.

    Default:

    let g:buffet_new_buffer_name = "*"
    
  • g:buffet_new_buffer_name - the character to be shown by the name of a modified buffer. Default:

    let g:buffet_modified_icon = "+"
    
  • g:buffet_left_trun_icon - the character to be shown by the count of truncated buffers on the left.

    Default:

    let g:buffet_left_trunc_icon = "<"
    
  • g:buffet_right_trun_icon - the character to be shown by the count of truncated buffers on the right.

    Default:

    let g:buffet_right_trunc_icon = ">"
    

Colors

Of course, you can customize the colors of your tabline, to make it awesome and yours. The following is the list of highlight groups, with self-explanatory names:

  • BuffetCurrentBuffer - the current buffer.
  • BuffetActiveBuffer - an active buffer (a non-current buffer visible in a non-current window).
  • BuffetBuffer - a non-current and non-active buffer.
  • BuffetModCurrentBuffer - the current buffer when modified.
  • BuffetModActiveBuffer - a modified active buffer (a non-current buffer visible in a non-current window).
  • BuffetModBuffer - a modified non-current and non-active buffer.
  • BuffetTrunc - the truncation indicator (count of truncated buffers from the left or right).
  • BuffetTab - a tab.

Note: To get your custom colors set, define a function with name g:BuffetSetCustomColors and place your highlight group definitions inside the function. Make sure the function is defined before vim-buffet is loaded

Example

function! g:BuffetSetCustomColors()
    hi! BuffetCurrentBuffer cterm=NONE ctermbg=5 ctermfg=8 guibg=#00FF00 guifg=#000000
endfunction

Recommendations and FAQ

Here are some recommended mappings to boost your navigation experience:

noremap <Tab> :bn<CR>
noremap <S-Tab> :bp<CR>
noremap <Leader><Tab> :Bw<CR>
noremap <Leader><S-Tab> :Bw!<CR>
noremap <C-t> :tabnew split<CR>

FAQ

How do I get the look like in the screenshot?

First you will need a patched font, extended with powerline and font-awesome symbols. Also, you will need the vim-devicons installed, which also has great guides on how to patch fonts, as well as some pre-patched fonts. As soon as you have the patched font, setting the following options, will give you exactly the same tabline as you see in the first demo screenshot:

let g:buffet_powerline_separators = 1
let g:buffet_tab_icon = "\uf00a"
let g:buffet_left_trunc_icon = "\uf0a8"
let g:buffet_right_trunc_icon = "\uf0a9"

How to have the current buffer open in a new tab instead of a new one?

Just add this mapping to your Vimrc:

map <C-t> :tab split<CR>

License

See LICENSE.

About

IDE-like Vim tabline

License:MIT License


Languages

Language:Vim Script 100.0%