aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/input.rs
diff options
context:
space:
mode:
authorGokul Soumya2022-10-11 00:10:01 +0000
committerGitHub2022-10-11 00:10:01 +0000
commit001858b11fb60926725e061ec31dfa9c77562148 (patch)
tree810b288609044d09044e65d30a26e3390f6d0d27 /helix-view/src/input.rs
parent5e1c589d43ee92412a97bfb0dd3d5b333eac4971 (diff)
Propagate idle timeout event to components (#3172)
Diffstat (limited to 'helix-view/src/input.rs')
-rw-r--r--helix-view/src/input.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/input.rs b/helix-view/src/input.rs
index 083a1e08..30fa72c4 100644
--- a/helix-view/src/input.rs
+++ b/helix-view/src/input.rs
@@ -14,6 +14,7 @@ pub enum Event {
Mouse(MouseEvent),
Paste(String),
Resize(u16, u16),
+ IdleTimeout,
}
#[derive(Debug, PartialOrd, PartialEq, Eq, Clone, Copy, Hash)]