context.vim
context.vim copied to clipboard
Problem with vim-indent-guides
When using indent-guides plugin the context view doesn't get indentation highlight:

Is it something easy to fix?
I found a simple workaround for popups:
function! MyContextIndentUpdate()
let popup_winid = get(g:context.popups, win_getid(), -1)
if popup_winid != -1
call win_execute(popup_winid, 'call indent_guides#enable()')
endif
endfunction
augroup MyContext
autocmd!
autocmd CursorHold * call MyContextIndentUpdate()
augroup END
Unless there is a better solution, the issue can be closed.