diff options
Diffstat (limited to 'helix-term/src/compositor.rs')
-rw-r--r-- | helix-term/src/compositor.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs index 0a08a0d1..ba8453f3 100644 --- a/helix-term/src/compositor.rs +++ b/helix-term/src/compositor.rs @@ -29,6 +29,7 @@ use helix_view::{Editor, View}; pub struct Context<'a> { pub editor: &'a mut Editor, pub executor: &'static smol::Executor<'static>, + pub scroll: Option<usize>, } pub trait Component { |