summaryrefslogtreecommitdiffstats
path: root/src/tmux/error.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-03-20 01:58:49 -0500
committerToby Vincent <tobyv13@gmail.com>2023-03-20 01:59:28 -0500
commite11e8bbf14be8f84b57013e4ace1e61071853c12 (patch)
tree5518d4c5cd133929c10c59dbc004096610fc9793 /src/tmux/error.rs
parentd17bdb1e841f9d39bd7c3142afc71ccb86bcc69d (diff)
feat: impl tmux session switching writing to history file
Diffstat (limited to 'src/tmux/error.rs')
-rw-r--r--src/tmux/error.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tmux/error.rs b/src/tmux/error.rs
index 6da5830..e6e12dc 100644
--- a/src/tmux/error.rs
+++ b/src/tmux/error.rs
@@ -8,4 +8,7 @@ pub enum Error {
#[error("Parsing error: {0}")]
Parse(#[from] std::str::Utf8Error),
+
+ #[error("History file error: {0}")]
+ History(#[from] crate::history::Error),
}