Files
vibe-coding-cn/i18n/en/documents/02-methodology/tmux Shortcut Cheatsheet.md
T
tukuaiai b264229f18 refactor(en): restructure en/documents to match zh structure
- Reorganize from 7 flat directories to 5 aggregated directories
- 00-fundamentals: core concepts, glue coding, methodology
- 01-getting-started: environment setup guides
- 02-methodology: tools, tutorials, development guides
- 03-practice: project examples (polymarket, telegram, fate-engine, etc.)
- 04-resources: templates, tools, external resources
- Remove duplicate files with underscore naming
- Add README.md for 00-fundamentals and 02-methodology
2025-12-19 02:02:06 +08:00

49 lines
1.0 KiB
Markdown

## tmux Shortcut Cheatsheet (Prefix Ctrl+b)
### Sessions
| Operation | Shortcut |
|---|---|
| Detach session | d |
| List sessions | s |
| Rename session | $ |
### Windows
| Operation | Shortcut |
|---|---|
| Create new window | c |
| Close window | & |
| Next window | n |
| Previous window | p |
| Switch to Nth window | 0-9 |
| Rename window | , |
| List windows | w |
### Panes
| Operation | Shortcut |
|---|---|
| Split pane horizontally | % |
| Split pane vertically | " |
| Switch pane | Arrow keys |
| Close pane | x |
| Show pane numbers | q |
| Toggle pane fullscreen/restore | z |
| Swap pane positions | { / } |
| Break pane into new window | ! |
### Others
| Operation | Shortcut |
|---|---|
| Enter copy mode | [ |
| Paste | ] |
| Show time | t |
| Command mode | : |
| List shortcuts | ? |
### Command Line
bash
tmux # Create new session
tmux new -s name # Create named session
tmux ls # List sessions
tmux attach -t name # Attach to session
tmux kill-session -t name # Kill session