This commit is contained in:
Ahmed Ibrahim
2025-08-03 00:38:07 -07:00
parent 8d01f6f200
commit 4e1a26a749
2 changed files with 16 additions and 1 deletions

View File

@@ -1,6 +1,20 @@
use std::fmt;
use std::io;
use std::io::Write;
use crossterm::Command;
use crossterm::queue;
use crossterm::style::Attribute as CAttribute;
use crossterm::style::Color as CColor;
use crossterm::style::Colors;
use crossterm::style::Print;
use crossterm::style::SetAttribute;
use crossterm::style::SetBackgroundColor;
use crossterm::style::SetColors;
use crossterm::style::SetForegroundColor;
use ratatui::style::Color;
use ratatui::style::Modifier;
use ratatui::text::Span;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SetScrollRegion(pub std::ops::Range<u16>);