A sidebar manger for Vim/Neovim to mimic an IDE-like UI layout.
We have a lot of plugins who open windows at your editor's side. I would call them "sidebars". Unfortunately, those plugins do no cooperate with each other. For example, if you have NERDTree and Tagbar installed, and configured to open at the same side, they can open simultaneously, and you have to control each of them individually. I think a better approach would be to "switch" them. That is, when you switch to NERDTree, Tagbar is closed automatically, and when you switch to Tagbar, NERDTree is closed automatically. As a result, it gives you a feeling that there is always a bar at a side, where there are several pages that can be switched back and forth. That's pretty much like a typical UI layout of an IDE. What's more, I want to use the same key for switching and toggling. I wrote a lot of code to implement this behavior in the past years, and finally noticed that an abstraction layer can be made, and that's this plugin.
Here's an example of configuration for NERDTree, Tagbar and Undotree at the left side.
let g:sidebars = {}
let g:NERDTreeWinPos = 'left'
let g:NERDTreeWinSize = 40
let g:NERDTreeQuitOnOpen = 0
let g:sidebars.nerdtree = {
\ 'position': 'left',
\ 'filter': {nr -> getwinvar(nr, '&filetype') ==# 'nerdtree'},
\ 'open': 'NERDTree',
\ 'close': 'NERDTreeClose',
\ 'width': 40
\ }
let g:tagbar_left = 1
let g:tagbar_width = 40
let g:tagbar_autoclose = 0
let g:tagbar_autofocus = 1
let g:sidebars.tagbar = {
\ 'position': 'left',
\ 'filter': {nr -> bufname(winbufnr(nr)) =~ '__Tagbar__'},
\ 'open': 'TagbarOpen',
\ 'close': 'TagbarClose'
\ }
let g:undotree_SetFocusWhenToggle = 1
let g:undotree_SplitWidth = 40
let g:sidebars.undotree = {
\ 'position': 'left',
\ 'filter': {nr -> getwinvar(nr, '&filetype') ==# 'undotree'},
\ 'open': 'UndotreeShow',
\ 'close': 'UndotreeHide'
\ }
noremap <silent> <M-1> :call sidebar#toggle('nerdtree')<CR>
noremap <silent> <M-2> :call sidebar#toggle('tagbar')<CR>
noremap <silent> <M-3> :call sidebar#toggle('undotree')<CR>Notes:
-
vim-sidebar-managermoves the configured windows to the specified side, and adjusts their sizes correspondingly. However sometimes it may not work propoerly. In that case, you may need to adjust the settings of the plugins. -
The
filterfield must be a Funcref who takes thewinnras an argument and returns a boolean (number) to indicate whether or not the window corresponding to thisnris the specific kind of sidebar window . -
The
openandclosefields can be either a string of command or a Funcref. Ifcloseis ommited,wincmd qis used as the default.
For more examples, please refer to the Wiki page
