mirror of
https://github.com/tradecatlabs/vibe-coding-cn.git
synced 2026-08-17 04:48:06 +00:00
- 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
49 lines
1.0 KiB
Markdown
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
|