__ ______ __
/ /_ __ __/ __/ /_____ _/ /_ _____
/ __ \/ / / / /_/ __/ __ `/ __ \/ ___/
/ /_/ / /_/ / __/ /_/ /_/ / /_/ (__ )
/_.___/\__,_/_/ \__/\__,_/_.___/____/
This is a simple script that shows a tabs-like list of buffers in the bottom of the window. The biggest advantage of this script over various others is that it does not take any lines away from your terminal, leaving more space for the document you're editing. The tabs are only visible when you need them - when you are switchin between buffers.
- Can manage the some buffers at a statusline.
- Do NOT need some commands to display buffers such as
:ls
and:buffers
. - Can display a full path.
- Highlight support active or inactive buffers.
Toggles the buftabs on and off.
:BuftabsToggle
Enables the buftabs for the current buffer and any other buffer upon entering it.
:BuftabsEnable
Disables the buftabs for the current buffer and any other buffer upon entering it.
:BuftabsDisable
For more information, see doc/buftabs.txt
let g:buftabs_enabled = 1
let g:buftabs_in_statusline = 1
let g:buftabs_in_cmdline = 0
let g:buftabs_only_basename = 1
let g:buftabs_active_highlight_group = "Visual"
let g:buftabs_inactive_highlight_group = ""
let g:buftabs_statusline_highlight_group = ""
let g:buftabs_marker_start = "["
let g:buftabs_marker_end = "]"
let g:buftabs_separator = "-"
let g:buftabs_marker_modified = "!"
- Twitter: @b4b4r07
- Email: [email protected]
Bug reports, feedback, suggestions etc are welcomed.
GNU GPL.