vim-sidebar-manager
vim-sidebar-manager copied to clipboard
vim-mundo support
I'd like to add vim-mundo but I'm unable to make it work.
This is my rc:
...
\ 'vim-mundo': {
\ 'position': 'left',
\ 'check_win': {nr -> bufname(winbufnr(nr)) =~ 'Mundo'},
\ 'open': 'MundoShow',
\ 'close': 'MundoHide'
\ },
...
I've also tried unsuccessfully to check if Mundo's window is open with this:
'check_win': {nr -> getwinvar(nr, '&filetype') ==# 'Mundo'}
Thanks for your work
You should check if you haved set caseinsensitive when do compare with =~, ==#, .etc
It works on me , but I use =~ 'mundo'