❗ This plugin is not needed after neovim/neovim#20198 ❗
This plugin exists for two reasons:
- fix neovim CursorHold and CursorHoldI autocmd events performance bug
- decouple updatetime from CursorHold and CursorHoldI (works for Vim and Neovim)
1., fixes slowdowns and untriggered events
2., you can now use small delays for CursorHold without writing the swap file 10x/sec (see :help updatetime)
This will result in more snappiness for plugins using those events, such as: coc.nvim, vim-gitgutter, tagbar, vim-devicons, vim-polyglot, etc.
Make sure to have the following plugins in your vimrc:
Plug 'antoinemadec/FixCursorHold.nvim'
" in millisecond, used for both CursorHold and CursorHoldI,
" use updatetime instead if not defined
let g:cursorhold_updatetime = 100
MIT