summaryrefslogtreecommitdiffstats
path: root/zellij-server
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2023-06-17 18:16:41 +0200
committerGitHub <noreply@github.com>2023-06-17 18:16:41 +0200
commit805fd1dc8184154bb7c5bc24db7b20c06fc47cad (patch)
tree164effb6ba747528be14c63f556bf88a13d9c4b3 /zellij-server
parent29a391f60eb3aeecba4682dfdb38cdcd2a61b2b2 (diff)
feat(plugins): strider improvements (#2551)
* fix(plugins): adjust debounce and smart file ignore in strider * style(comment): remove commented code * style(fmt): rustfmt
Diffstat (limited to 'zellij-server')
-rw-r--r--zellij-server/src/plugins/watch_filesystem.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-server/src/plugins/watch_filesystem.rs b/zellij-server/src/plugins/watch_filesystem.rs
index 9ac0a320c..36c0e04d5 100644
--- a/zellij-server/src/plugins/watch_filesystem.rs
+++ b/zellij-server/src/plugins/watch_filesystem.rs
@@ -12,7 +12,7 @@ use zellij_utils::notify_debouncer_full::{
};
use zellij_utils::{data::Event, errors::prelude::Result};
-const DEBOUNCE_DURATION_MS: u64 = 500;
+const DEBOUNCE_DURATION_MS: u64 = 400;
pub fn watch_filesystem(
senders: ThreadSenders,