summaryrefslogtreecommitdiffstats
path: root/src/tmux
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-04-02 15:22:35 -0500
committerToby Vincent <tobyv13@gmail.com>2023-04-02 15:23:02 -0500
commitc90dc69bd3dccfad43e3a2f26713543b5c876005 (patch)
tree694676106b7ae94ddf7179a05a061cfa2056d965 /src/tmux
parente11e8bbf14be8f84b57013e4ace1e61071853c12 (diff)
feat: rewrite to use Extend trait and remove tmux control
Diffstat (limited to 'src/tmux')
-rw-r--r--src/tmux/error.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/tmux/error.rs b/src/tmux/error.rs
index e6e12dc..6da5830 100644
--- a/src/tmux/error.rs
+++ b/src/tmux/error.rs
@@ -8,7 +8,4 @@ pub enum Error {
#[error("Parsing error: {0}")]
Parse(#[from] std::str::Utf8Error),
-
- #[error("History file error: {0}")]
- History(#[from] crate::history::Error),
}