diff options
Diffstat (limited to 'alacritty_terminal/src/grid/storage.rs')
-rw-r--r-- | alacritty_terminal/src/grid/storage.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/alacritty_terminal/src/grid/storage.rs b/alacritty_terminal/src/grid/storage.rs index 5d9339d5..3182da57 100644 --- a/alacritty_terminal/src/grid/storage.rs +++ b/alacritty_terminal/src/grid/storage.rs @@ -330,17 +330,20 @@ mod test { use crate::grid::storage::Storage; use crate::grid::GridCell; use crate::index::{Column, Line}; + use crate::term::cell::Flags; impl GridCell for char { fn is_empty(&self) -> bool { *self == ' ' || *self == '\t' } - fn is_wrap(&self) -> bool { - false + fn flags(&self) -> &Flags { + unimplemented!(); } - fn set_wrap(&mut self, _wrap: bool) {} + fn flags_mut(&mut self) -> &mut Flags { + unimplemented!(); + } fn fast_eq(&self, other: Self) -> bool { self == &other |