diff options
Diffstat (limited to 'helix-view/src/view.rs')
-rw-r--r-- | helix-view/src/view.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helix-view/src/view.rs b/helix-view/src/view.rs index 887c45a2..732c5081 100644 --- a/helix-view/src/view.rs +++ b/helix-view/src/view.rs @@ -5,12 +5,13 @@ use std::{borrow::Cow, path::PathBuf}; use crate::theme::Theme; use helix_core::{ graphemes::{grapheme_width, RopeGraphemes}, - Position, RopeSlice, State, + History, Position, RopeSlice, State, }; use tui::layout::Rect; pub struct View { pub state: State, + pub history: History, pub first_line: usize, pub size: (u16, u16), pub theme: Theme, // TODO: share one instance @@ -26,6 +27,7 @@ impl View { first_line: 0, size, // TODO: pass in from term theme, + history: History::default(), }; Ok(view) |