completor.vim
completor.vim copied to clipboard
Is there a way to disable refresh on every inputted character?
When I type std::
and the namespace members list is loaded, I don't want to refresh it on every character I type, it's enough to just filter it. Is there a way to enable this behaviour?
You can add the following config to disable refresh on every input:
let g:completor_refresh_always = 0
The issue with that setting is it works as long as you don't try to fuzzy match.