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

@ -1,7 +1,7 @@
use std::{fs::{self, File}, io::{self, Write}, path::PathBuf};
use thiserror::Error;
use crate::MapDisplay;
use crate::session::MapDisplay;
#[derive(Debug, Error)]
#[allow(dead_code)]