summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-11-30 13:54:59 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-11-30 13:54:59 +0000
commit1745344869fe616bda7ca33c231eb5147ccd6e59 (patch)
tree21d211a1f1d9d31f72061b46d51e4e98b33fc806 /src/input_handler.cc
parente91da2bd43e46fa6f2560878aad35f36fcd7e89c (diff)
Run InsertIdle after reseting completer to permit InsertIdle to display an info box
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc2
1 files changed, 1 insertions, 1 deletions
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()}
{