From 1745344869fe616bda7ca33c231eb5147ccd6e59 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Mon, 30 Nov 2015 13:54:59 +0000 Subject: [PATCH] Run InsertIdle after reseting completer to permit InsertIdle to display an info box --- src/input_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input_handler.cc b/src/input_handler.cc index bcccdb55..80d2c314 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -972,9 +972,9 @@ public: m_autoshowcompl(true), m_idle_timer{TimePoint::max(), [this](Timer& timer) { - context().hooks().run_hook("InsertIdle", "", context()); if (m_autoshowcompl) m_completer.update(); + context().hooks().run_hook("InsertIdle", "", context()); }}, m_disable_hooks{context().user_hooks_disabled()} {