vim-sidebar-manager icon indicating copy to clipboard operation
vim-sidebar-manager copied to clipboard

vim-mundo support

Open wchmb opened this issue 5 years ago • 1 comments

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

wchmb avatar Sep 10 '20 18:09 wchmb

You should check if you haved set caseinsensitive when do compare with =~, ==#, .etc It works on me , but I use =~ 'mundo'

leoatchina avatar Feb 12 '22 04:02 leoatchina