indentLine icon indicating copy to clipboard operation
indentLine copied to clipboard

conflict with coc.nvim

Open utrumo opened this issue 6 years ago • 1 comments

Can you look at this problem? How can i solve it? https://github.com/neoclide/coc.nvim/issues/781

utrumo avatar May 18 '19 21:05 utrumo

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()})

bigshans avatar Feb 23 '22 04:02 bigshans