branch: externals/company commit c17e5c14b375c978179eaac8ec06427199391357 Author: Dmitry Gutov <dgu...@yandex.ru> Commit: Dmitry Gutov <dgu...@yandex.ru>
company-pseudo-tooltip-unless-just-one-frontend-with-delay: Add 'unhide' support Fixes #1116 --- company.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/company.el b/company.el index 5358fe3..3b5a7ba 100644 --- a/company.el +++ b/company.el @@ -3419,6 +3419,9 @@ Delay is determined by `company-tooltip-idle-delay'." (run-with-timer company-tooltip-idle-delay nil 'company-pseudo-tooltip-unless-just-one-frontend-with-delay 'post-command)))) + (unhide + (when (overlayp company-pseudo-tooltip-overlay) + (company-pseudo-tooltip-unless-just-one-frontend command))) (t (company-pseudo-tooltip-unless-just-one-frontend command))))