Edward Njoroge

Results 14 comments of Edward Njoroge

To me, this issue occurs when there's any open floating window (I'm using Coc.nvim) as seen here: ![Screen-Recording-2020-01-06-at-16 22 44](https://user-images.githubusercontent.com/15171489/71820816-658f9d00-30a1-11ea-8a0c-e7da62aff12b.gif) After debugging to find which setting was responsible, I found...

Here's what I got: `autocmd CursorHold`: ``` :autocmd CursorHold --- Autocommands --- coc_nvim CursorHold * call s:Autocmd('CursorHold', +expand('')) gitgutter CursorHold * call gitgutter#process_buffer(bufnr(''), 0) nerdtreegitplugin CursorHold * silent! call s:CursorHoldUpdate()...

Yes @NickolasHKraus I'm using it.

I have tried disabling it (by commenting out the `Plug 'Xuyuanp/nerdtree-git-plugin'` entry) but the problem persists.

Hello @NickolasHKraus, I removed `nerd-tree-git-plugin` (by running `:PlugClean`) but the problem still persists, unfortunately. I'll also do a bit of debugging on my side and see if I can provide...

Hello @NickolasHKraus, @PhilRunninger. After a bit of debugging, I can confirm that the culprit is `nerd-tree-git-plugin` as @NickolasHKraus has pointed out. Interestingly, since I use another NERDTree plugin [vim-devicons](https://github.com/ryanoasis/vim-devicons), disabling...

I can confirm that disabling the call to `NERDTreeRender()` removes the problem entirely. Interestingly, also calling `g:NERDTree.NERDTreeFocus()` instead of `g:NERDTree.CursorToTreeWin()` also solves it.

My bad, I was using `g:NERDTree.NERDTreeFocus()` and it must have been failing at that point, leading me to believe it was the solution. Disabling `NERDTreeRender()` is indeed the solution 👍...

Hello @NickolasHKraus, Here's what I got: ``` :autocmd BufWritePost --- Autocommands --- vimrc BufWritePost .vimrc so $MYVIMRC | if has('gui_running') | so $MYGVIMRC | endif _vimrc so $MYVIMRC | if...

@trusktr I had the same issue and I found the conflicting plugin is **othree/yajs.vim**. Disabling it makes **vim-vue** perform really well.