changed package name from 'fern' to 'shed'

This commit is contained in:
2026-02-24 18:02:13 -05:00
parent 2f0cb931d6
commit 90e69f96d2
17 changed files with 130 additions and 130 deletions

View File

@@ -101,7 +101,7 @@ pub enum ReadlineEvent {
Pending,
}
pub struct FernVi {
pub struct ShedVi {
pub reader: PollReader,
pub writer: Box<dyn LineWriter>,
@@ -120,7 +120,7 @@ pub struct FernVi {
pub needs_redraw: bool,
}
impl FernVi {
impl ShedVi {
pub fn new(prompt: Option<String>, tty: RawFd) -> ShResult<Self> {
let mut new = Self {
reader: PollReader::new(),