-
Notifications
You must be signed in to change notification settings - Fork 8
Fix Tmux hotkeys in README to match actual tmux.conf bindings #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
japaz
wants to merge
1
commit into
omacom-io:master
Choose a base branch
from
japaz:fix/tmux-hotkeys-readme
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 | | ||
| | `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
|
||
|
|
||
| **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):** | ||
|
|
||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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 notmux.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.