I am very excited about emacs autocompletion mode. But my code base is large, and sometimes when I type and it tries to debug the completion, it searches for all possible words and freezes. This is very annoying.
Is there a way to run a search in the background in a parallel process, so emacs will respond to user actions. And only if the point is held at the end of the request, suggest autocomplete?
For example, keyboard input is the main process and can never be delayed, and autocomplete works as a residual resource of the machine.
source
share