Some checks failed
Build Workflow / build (push) Failing after 6s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6.2 KiB
6.2 KiB
| 1 | new-session | Start a new session | tmux new |
|---|---|---|---|
| 2 | new-session | Start a named session | tmux new -s mysession |
| 3 | new-session | Start a session with a named window | tmux new -s mysession -n mywindow |
| 4 | new-session | Start or attach to existing session | tmux new -A -s mysession |
| 5 | attach-session | Attach to last session | tmux attach |
| 6 | attach-session | Attach to a session by name | tmux a -t mysession |
| 7 | detach-client | Detach from current session | tmux detach |
| 8 | list-sessions | List all sessions | tmux ls |
| 9 | kill-session | Kill a session by name | tmux kill-session -t mysession |
| 10 | kill-session | Kill all sessions but current | tmux kill-session -a |
| 11 | kill-session | Kill all sessions except one | tmux kill-session -a -t mysession |
| 12 | kill-server | Kill tmux server and all sessions | tmux kill-server |
| 13 | rename-session | Rename current session | tmux rename-session newname |
| 14 | switch-client | Switch to another session | tmux switch-client -t mysession |
| 15 | has-session | Check if a session exists | tmux has-session -t mysession |
| 16 | new-window | Create a new window | tmux new-window |
| 17 | new-window | Create a named window | tmux new-window -n editor |
| 18 | rename-window | Rename current window | tmux rename-window newname |
| 19 | kill-window | Kill current window | tmux kill-window |
| 20 | select-window | Select window by number | tmux select-window -t :2 |
| 21 | next-window | Go to next window | tmux next-window |
| 22 | previous-window | Go to previous window | tmux previous-window |
| 23 | last-window | Toggle last active window | tmux last-window |
| 24 | swap-window | Swap two windows | tmux swap-window -s 2 -t 1 |
| 25 | swap-window | Move current window left | tmux swap-window -t -1 |
| 26 | move-window | Move window between sessions | tmux move-window -s foo:0 -t bar:9 |
| 27 | move-window | Renumber windows to remove gaps | tmux move-window -r |
| 28 | list-windows | List windows | tmux list-windows |
| 29 | link-window | Link window from another session | tmux link-window -s src:1 -t dst |
| 30 | unlink-window | Unlink a window | tmux unlink-window -t :1 |
| 31 | split-window | Split pane vertically (left/right) | tmux split-window -h |
| 32 | split-window | Split pane horizontally (top/bottom) | tmux split-window -v |
| 33 | split-window | Split pane with specific size | tmux split-window -h -l 30% |
| 34 | select-pane | Select pane by number | tmux select-pane -t 1 |
| 35 | select-pane | Select pane to the left | tmux select-pane -L |
| 36 | select-pane | Select pane above | tmux select-pane -U |
| 37 | resize-pane | Resize pane left | tmux resize-pane -L 10 |
| 38 | resize-pane | Resize pane right | tmux resize-pane -R 10 |
| 39 | resize-pane | Resize pane up | tmux resize-pane -U 5 |
| 40 | resize-pane | Resize pane down | tmux resize-pane -D 5 |
| 41 | resize-pane | Zoom/unzoom pane | tmux resize-pane -Z |
| 42 | kill-pane | Kill current pane | tmux kill-pane |
| 43 | swap-pane | Swap two panes | tmux swap-pane -s 0 -t 1 |
| 44 | join-pane | Move pane from another window | tmux join-pane -s :1 |
| 45 | break-pane | Move pane to its own window | tmux break-pane |
| 46 | display-panes | Show pane numbers | tmux display-panes |
| 47 | move-pane | Move pane to another window | tmux move-pane -t :2 |
| 48 | last-pane | Toggle last active pane | tmux last-pane |
| 49 | rotate-window | Rotate panes | tmux rotate-window |
| 50 | pipe-pane | Log pane output to file | tmux pipe-pane -o 'cat >> ~/tmux.log' |
| 51 | copy-mode | Enter copy mode | tmux copy-mode |
| 52 | capture-pane | Capture pane content to buffer | tmux capture-pane -pS -200 |
| 53 | list-buffers | List all paste buffers | tmux list-buffers |
| 54 | show-buffer | Show buffer contents | tmux show-buffer |
| 55 | choose-buffer | Choose and paste a buffer | tmux choose-buffer |
| 56 | save-buffer | Save buffer to file | tmux save-buffer ~/tmux-buffer.txt |
| 57 | paste-buffer | Paste buffer | tmux paste-buffer |
| 58 | delete-buffer | Delete a buffer | tmux delete-buffer -b 0 |
| 59 | load-buffer | Load file into buffer | tmux load-buffer ~/file.txt |
| 60 | set-option | Enable mouse mode | tmux set -g mouse on |
| 61 | set-option | Set vi mode keys | tmux set -g mode-keys vi |
| 62 | set-option | Set base index to 1 | tmux set -g base-index 1 |
| 63 | set-option | Set escape time | tmux set -sg escape-time 0 |
| 64 | set-option | Set history limit | tmux set -g history-limit 10000 |
| 65 | set-window-option | Set pane base index | tmux setw -g pane-base-index 1 |
| 66 | set-window-option | Enable automatic rename | tmux setw -g automatic-rename on |
| 67 | show-options | Show all global options | tmux show-options -g |
| 68 | show-options | Show a specific option | tmux show-options -g status-style |
| 69 | source-file | Reload tmux config | tmux source-file ~/.tmux.conf |
| 70 | bind-key | Bind key to split vertical | tmux bind | split-window -h |
| 71 | unbind-key | Remove a key binding | tmux unbind-key r |
| 72 | list-keys | List all key bindings | tmux list-keys |
| 73 | list-keys | Show bindings for a key | tmux list-keys -T prefix C-a |
| 74 | choose-tree | Interactive session/window chooser | tmux choose-tree |
| 75 | choose-tree | Interactive session chooser | tmux choose-tree -s |
| 76 | command-prompt | Open command prompt | tmux command-prompt |
| 77 | show-environment | Show environment variables | tmux show-environment -g |
| 78 | set-environment | Set environment variable | tmux set-environment -g EDITOR nvim |
| 79 | display-popup | Show a popup window | tmux display-popup -w 80% -h 80% |
| 80 | clock-mode | Show clock | tmux clock-mode |
| 81 | clear-history | Clear pane history | tmux clear-history |
| 82 | confirm-before | Ask before running command | tmux confirm-before kill-session |
| 83 | refresh-client | Refresh client display | tmux refresh-client |
| 84 | respawn-pane | Restart a dead pane | tmux respawn-pane -k |
| 85 | respawn-window | Restart a dead window | tmux respawn-window -k |
| 86 | lock-server | Lock the server | tmux lock-server |
| 87 | suspend-client | Suspend the client | tmux suspend-client |
| 88 | wait-for | Wait for a signal | tmux wait-for signal-name |
| 89 | list-commands | List all tmux commands | tmux list-commands |
| 90 | show-messages | Show log messages | tmux show-messages |
| 91 | select-layout | Set pane layout | tmux select-layout even-horizontal |
| 92 | select-layout | Set tiled layout | tmux select-layout tiled |
| 93 | customize-mode | Enter customize mode | tmux customize-mode |
| 94 | show-hooks | Show all hooks | tmux show-hooks -g |