From a930f99179c4e0706254b243a4c0672089cb59ed Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= <blaz@mxxn.io>
Date: Sun, 10 Oct 2021 22:39:47 +0900
Subject: [PATCH] fix: Make sure to actually use idle_timeout config value for
 the timers

---
 helix-view/src/editor.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index 5af6dbf3..d0ea6653 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -141,7 +141,7 @@ impl Editor {
             registers: Registers::default(),
             clipboard_provider: get_clipboard_provider(),
             status_msg: None,
-            idle_timer: Box::pin(sleep(Duration::from_millis(500))),
+            idle_timer: Box::pin(sleep(config.idle_timeout)),
             config,
         }
     }
@@ -156,7 +156,7 @@ impl Editor {
     pub fn reset_idle_timer(&mut self) {
         self.idle_timer
             .as_mut()
-            .reset(Instant::now() + Duration::from_millis(500));
+            .reset(Instant::now() + self.config.idle_timeout);
     }
 
     pub fn clear_status(&mut self) {