blob: 4578ccb7d71860cd22e0c6e7aaa5c012b2c82d42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Tmux
## Sessions
(/) switch between sessions
## Window management
.N move window to index N
w choose window interactively
## Pane management
q display pane indices
## Run command in new session
tmux new-session \; send-keys 'command
'
#
can be entered with Ctrl-V + Enter
## Run command in multiple panes at once
* `:setw synchronize-panes on`
turn off with `:setw synchronize-panes off`
|