updated README

This commit is contained in:
Valerie Wolfe 2024-06-10 12:02:57 -04:00
parent 28a7fc44f9
commit 19b12c682d

View file

@ -17,10 +17,10 @@ shorter than its equivalent tmux command:
```sh ```sh
# new session # new session
tmux new-session -t foo tmux new-s -t foo
remux n foo remux n foo
# lists # list sessions
tmux ls tmux ls
remux l remux l
remux remux
@ -30,11 +30,11 @@ tmux a -t foo
remux a foo remux a foo
# has # has
tmux has -t foo tmux h -t foo
remux has foo remux has foo
# detach # detach
tmux detach-client -t foo tmux det -t foo
remux d foo remux d foo
# nesting sessions with '-n' flag # nesting sessions with '-n' flag
@ -43,6 +43,15 @@ remux a -n foo
TMUX='' tmux new-session -t foo TMUX='' tmux new-session -t foo
remux n -n foo remux n -n foo
# switch to another session
tmux swi -t foo
rmux s foo
# cd to session path
tmux run 'printf "#{session_path}" > /tmp/tmux_root'
cd `cat /tmp/tmux_root`
cd `rmux root`
``` ```
## Dependencies ## Dependencies