Warning keep popping when running conque in VIM

plugins, vim

Solution

One integration point into Vim is through events, which can trigger automatic commands; the Conque plugin itself uses these to implement its functionality. Events like `CursorMovedI` are fired whenever you type something or move the cursor in insert mode; this can have an impact on performance, and that's what the warning is about.

You can list all such automatic commands via:

:verbose autocmd CursorHoldI,CursorMovedI

As long as Conque works well for you, it's fine to ignore (and suppress) the warning. But if you indeed run into problems, you'd need to check the other autocmd sources and maybe disable one or the other plugin (at least for the Conque buffer). (See `:help autocmd-remove` for how to do this.)

Problem

When running `conque` in `VIM`, the warning message prompts out every time: ``` Warning: Global CursorHoldI and CursorMovedI autocommands may cause ConqueTerm to run slowly ``` I found a method to remove the warning is to comment out the warning-function in the `conque_term.vim`, but I don't think it's a decent and safe way to solve the problem. I'm new with VIM, so I found no way to identify the source of problem by myself. Could anyone help? Thanks a lot!

Original source