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
# new session
tmux new-session -t foo
tmux new-s -t foo
remux n foo
# lists
# list sessions
tmux ls
remux l
remux
@ -30,11 +30,11 @@ tmux a -t foo
remux a foo
# has
tmux has -t foo
tmux h -t foo
remux has foo
# detach
tmux detach-client -t foo
tmux det -t foo
remux d foo
# nesting sessions with '-n' flag
@ -43,6 +43,15 @@ remux a -n foo
TMUX='' tmux new-session -t 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