branch: master commit b079bd2ba1d67fdac850e8e11a288c8c71852237 Author: Dmitry Gutov <dgu...@yandex.ru> Commit: Dmitry Gutov <dgu...@yandex.ru>
Revert "Break idle re-starting loop" This reverts commit 259cf40baa24bd0dcb9df743248154b35f81a74e. --- company.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/company.el b/company.el index 4c38b8d..915f1bd 100644 --- a/company.el +++ b/company.el @@ -829,7 +829,6 @@ means that `company-mode' is always turned on except in `message-mode' buffers." (setq this-command last-command)) (global-set-key '[company-dummy-event] 'company-ignore) -(global-set-key '[company-async-event] 'ignore) (defun company-input-noop () (push 'company-dummy-event unread-command-events)) @@ -1239,7 +1238,7 @@ can retrieve meta-data for them." (cdr c) (lambda (candidates) (when (eq res 'none) - (push 'company-async-event unread-command-events)) + (push 'company-dummy-event unread-command-events)) (setq res candidates))) (while (and (eq res 'none) (sit-for 0.5 t)))