Tmux sessions and windows (#682)
* most basic tmux sessions and windows commands added * Detach -> detach
This commit is contained in:
parent
d444d081d5
commit
82985172c5
18
tmux.md
18
tmux.md
|
@ -8,7 +8,23 @@ title: tmux
|
|||
-u # UTF8 mode
|
||||
-S ~/.tmux.socket
|
||||
|
||||
$ tmux attach
|
||||
#### Sessions
|
||||
|
||||
$ tmux new
|
||||
$ tmux new -s session_name
|
||||
|
||||
$ tmux attach # Default session
|
||||
$ tmux attach -s session_name
|
||||
|
||||
$ tmux switch -t session_name
|
||||
|
||||
$ tmux ls # List sessions
|
||||
|
||||
$ tmux detach
|
||||
|
||||
#### Windows
|
||||
|
||||
$ tmux new-window
|
||||
|
||||
### Help
|
||||
|
||||
|
|
Loading…
Reference in New Issue