Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 26 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,40 +71,42 @@ You launch tmux with `t` in a new terminal (`Ctrl + Cmd + Return`).

| Hotkey | Action |
|--------|--------|
| `Ctrl + Cmd + PageUp` | Split horizontally |
| `Ctrl + Cmd + PageDown` | Split vertically |
| `Ctrl + Cmd + Home` | Split horizontally |
| `Ctrl + Cmd + End` | Kill pane |
| `Ctrl + Cmd + ←` | Focus left pane |
| `Ctrl + Cmd + →` | Focus right pane |
| `Ctrl + Cmd + ↑` | Focus up pane |
| `Ctrl + Cmd + ↓` | Focus down pane |
| `Ctrl + Cmd + Shift + ←` | Resize left |
| `Ctrl + Cmd + Shift + ↓` | Resize down |
| `Ctrl + Cmd + Shift + ↑` | Resize up |
| `Ctrl + Cmd + Shift + →` | Resize right |
| `Prefix + h` | Split horizontally (new pane below) |
| `Prefix + v` | Split vertically (new pane to the right) |
| `Prefix + x` | Kill pane |
Comment on lines +74 to +76

Copilot AI Apr 18, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These keybindings are described as coming from tmux.conf, but there’s no tmux.conf (or tmux config) in this repo (it looks like tmux config comes indirectly via the Omadots installer). Consider linking to the exact upstream config file/commit that defines these bindings (or adding the tmux config here) to prevent the README hotkey list from drifting again.

Copilot uses AI. Check for mistakes.
| `Ctrl + ⌥ + ←` | Focus left pane |
| `Ctrl + ⌥ + →` | Focus right pane |
| `Ctrl + ⌥ + ↑` | Focus up pane |
| `Ctrl + ⌥ + ↓` | Focus down pane |
| `Ctrl + ⌥ + Shift + ←` | Resize left |
| `Ctrl + ⌥ + Shift + ↓` | Resize down |
| `Ctrl + ⌥ + Shift + ↑` | Resize up |
| `Ctrl + ⌥ + Shift + →` | Resize right |
Comment on lines +81 to +84

Copilot AI Apr 18, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR description says pane focus/resize uses Ctrl + ⌥ + arrow, but the README documents resize as Ctrl + ⌥ + Shift + arrow. Please align the PR description/test plan with what’s documented here (or update the documented shortcuts if Shift isn’t actually required).

Copilot uses AI. Check for mistakes.

**Window Management:**

| Hotkey | Action |
|--------|--------|
| `Ctrl + Shift + Home` | New window |
| `Ctrl + Shift + End` | Kill window |
| `Ctrl + Shift + PageUp` | Next window |
| `Ctrl + Shift + PageDown` | Previous window |
| `Ctrl + Space x` | Kill window |
| `Ctrl + Space r` | Rename window |
| `Prefix + c` | New window |
| `Prefix + k` | Kill window |
| `Prefix + r` | Rename window |
| `⌥ + 1` … `⌥ + 9` | Jump to window N |
| `⌥ + ←` | Previous window |
| `⌥ + →` | Next window |
| `⌥ + Shift + ←` | Swap with previous window |
| `⌥ + Shift + →` | Swap with next window |

**Session Management:**

| Hotkey | Action |
|--------|--------|
| `Ctrl + Cmd + Shift + Home` | New session |
| `Ctrl + Cmd + Shift + End` | Kill session |
| `Ctrl + Cmd + Shift + PageUp` | Previous session |
| `Ctrl + Cmd + Shift + PageDown` | Next session |
| `Ctrl + Space R` | Rename session |
| `Ctrl + Space X` | Kill session |
| `Prefix + Shift + c` | New session |
| `Prefix + Shift + k` | Kill session |
| `Prefix + Shift + r` | Rename session |
| `Prefix + Shift + p` | Previous session |
| `Prefix + Shift + n` | Next session |
| `⌥ + ↑` | Previous session |
| `⌥ + ↓` | Next session |

**Copy Mode (Vi):**

Expand Down
Loading