From 3a082edd58ecdf4db31702c6c8487c42227049a3 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 8 Mar 2022 19:58:53 -0500 Subject: parse a history file if available doesn't do anything with it yet --- src/shell/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/shell/mod.rs') diff --git a/src/shell/mod.rs b/src/shell/mod.rs index 9befd99..4a5c5d2 100644 --- a/src/shell/mod.rs +++ b/src/shell/mod.rs @@ -5,6 +5,7 @@ use textmode::Textmode as _; mod event; mod history; mod inputs; +mod old_history; mod prelude; mod readline; @@ -75,6 +76,7 @@ pub enum Action { pub struct Shell { readline: readline::Readline, history: history::History, + old_history: old_history::History, env: Env, git: Option, focus: Focus, @@ -92,6 +94,7 @@ impl Shell { Ok(Self { readline: readline::Readline::new(), history: history::History::new(), + old_history: old_history::History::new(), env, git: None, focus: Focus::Readline, -- cgit v1.2.3-54-g00ecf