indentLine
indentLine copied to clipboard
conflict with coc.nvim
Can you look at this problem? How can i solve it? https://github.com/neoclide/coc.nvim/issues/781
One workaround for this problem is set a timer to exectue IndentLinesEnable when you enter the buffer every time.
fun! IndentLineStart()
if &ft =~ 'startify\|coc-explorer'
return
endif
execute('IndentLinesEnable')
endfun
autocmd BufEnter * call timer_start(200, { tid -> IndentLineStart()})