summaryrefslogtreecommitdiffstats
path: root/src/shell/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/shell/mod.rs')
-rw-r--r--src/shell/mod.rs3
1 files changed, 3 insertions, 0 deletions
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<inputs::GitInfo>,
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,