Compare commits

...

2 commits

Author SHA1 Message Date
a915bfd9c5 updated README and help text 2024-06-18 12:02:47 -04:00
ac97336f13 added contextual action as default command 2024-06-18 11:57:08 -04:00
5 changed files with 21 additions and 4 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "remux" name = "remux"
version = "0.3.1" version = "0.3.2"
edition = "2021" edition = "2021"
authors = [ "Valerie Wolfe <sleeplessval@gmail.com>" ] authors = [ "Valerie Wolfe <sleeplessval@gmail.com>" ]
description = "A friendly command shortener for tmux" description = "A friendly command shortener for tmux"

View file

@ -23,7 +23,6 @@ remux n foo
# list sessions # list sessions
tmux ls tmux ls
remux l remux l
remux
# attach # attach
tmux a -t foo tmux a -t foo

View file

@ -64,6 +64,23 @@ pub fn attach(pargs: &mut Arguments) {
tmux.output().ok(); tmux.output().ok();
} }
pub fn context_action() {
let repo = util::repo_root(std::env::current_dir().unwrap());
if !env::tmux() && repo.is_some() {
let target = util::repo_fallback();
let mut args = Arguments::from_vec( vec![(&target).into()] );
if util::session_exists(&target) {
attach(&mut args);
} else {
new(&mut args);
}
return;
} else {
// fallback behavior is list
list();
}
}
pub fn detach(pargs: &mut Arguments) { pub fn detach(pargs: &mut Arguments) {
util::terminal_enforce(); util::terminal_enforce();
// get target or fallback // get target or fallback

View file

@ -13,7 +13,7 @@ println!("remux v{VERSION}
Valerie Wolfe <sleeplessval@gmail.com> Valerie Wolfe <sleeplessval@gmail.com>
A command wrapper for tmux written in Rust. A command wrapper for tmux written in Rust.
usage: remux <command> [<args>] usage: remux [command] [<args>]
commands: commands:
help Show help text for remux, a command, or a help topic. help Show help text for remux, a command, or a help topic.

View file

@ -43,6 +43,8 @@ fn main() {
match subcommand.as_deref() { match subcommand.as_deref() {
Some("help") Some("help")
=> help(&mut args), => help(&mut args),
None
=> command::share::context_action(),
Some("a" | "attach") Some("a" | "attach")
=> command::share::attach(&mut args), => command::share::attach(&mut args),
@ -53,7 +55,6 @@ fn main() {
Some("h" | "has") Some("h" | "has")
=> command::share::has(&mut args), => command::share::has(&mut args),
None |
Some("l" | "ls" | "list") Some("l" | "ls" | "list")
=> command::share::list(), => command::share::list(),