Re-implemented aliases

This commit is contained in:
2025-03-18 21:50:53 -04:00
parent 0d286ba006
commit 19dee4bcd6
12 changed files with 314 additions and 55 deletions

View File

@@ -29,7 +29,9 @@ fn get_hist_path() -> ShResult<PathBuf> {
Ok(PathBuf::from(path))
} else {
let home = env::var("HOME")?;
Ok(PathBuf::from(format!("{home}/.fernhist")))
let path = PathBuf::from(format!("{home}/.fernhist"));
flog!(DEBUG, path);
Ok(path)
}
}