summaryrefslogtreecommitdiffstats
path: root/src/config.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-05-06 17:56:06 -0500
committerToby Vincent <tobyv13@gmail.com>2023-05-06 17:56:57 -0500
commitde5b70c5426311ce887e757c7397bed9107c83c0 (patch)
tree8da07e48b7e729122584a3681104396f51c5f54f /src/config.rs
parentbcdcdb0ada8d13950e22909250b6b6783866535e (diff)
feat: impl tmux session source and parser
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index c45036c..d961f50 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -64,6 +64,12 @@ pub struct Projects {
#[cfg(feature = "git")]
#[arg(long, short)]
pub git: bool,
+
+ /// Add current tmux session directories.
+ ///
+ /// Uses last attached time as the timestamp.
+ #[arg(long, short)]
+ pub tmux: bool,
}
#[derive(Debug, Default, Clone, Args)]