history now logs "cd" and "exit", history bug when starting a new session and inputting a new command then leaving will concat onto the old history's same line

This commit is contained in:
2025-01-12 02:00:56 -05:00
parent d40f4bece3
commit f8d97ded00
7 changed files with 99 additions and 127 deletions

View File

@ -5,7 +5,7 @@ use std::{cell::RefCell, rc::Rc};
use core::fmt;
use shell::ShellGlobal;
use crate::{ps::Ps, MapDisplay};
use crate::{ps::Ps, session::MapDisplay};
mod shell;
mod terminal;