diff options
author | Gokul Soumya | 2022-10-11 00:10:01 +0000 |
---|---|---|
committer | GitHub | 2022-10-11 00:10:01 +0000 |
commit | 001858b11fb60926725e061ec31dfa9c77562148 (patch) | |
tree | 810b288609044d09044e65d30a26e3390f6d0d27 /helix-view/src | |
parent | 5e1c589d43ee92412a97bfb0dd3d5b333eac4971 (diff) |
Propagate idle timeout event to components (#3172)
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/input.rs | 1 |
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)] |