diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2015-11-30 13:54:59 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2015-11-30 13:54:59 +0000 |
| commit | 1745344869fe616bda7ca33c231eb5147ccd6e59 (patch) | |
| tree | 21d211a1f1d9d31f72061b46d51e4e98b33fc806 /src/input_handler.cc | |
| parent | e91da2bd43e46fa6f2560878aad35f36fcd7e89c (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.cc | 2 |
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()} { |
