summaryrefslogtreecommitdiffstats
path: root/src/tmux/error.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-05-08 17:21:18 -0500
committerToby Vincent <tobyv13@gmail.com>2023-05-08 17:21:18 -0500
commitc0d77c1eadc1d0304369d6bc8107ac9843be93f0 (patch)
tree60c983ab9cd7dd4a0318b58abeab6309ffcd75a8 /src/tmux/error.rs
parent3f94c60de5059a7549d959944de2b8d73ae0cee9 (diff)
feat: add exclude-attached flag to tmux config
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..4891c7d 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("Session not found")]
+ NotFound,
}